<style>
        :root {
            --primary: #0d253f;
            --accent: #ffffff;
            --dark-wood: #3b2c1e;
            --light-wood: #7a5c3e;
            --text: #333;
            --light: #f8f9fa;
            --highlight: #e6a83a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        header {
            background-color: var(--primary);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            position: fixed;
            width: 100%;
            z-index: 100;
        }
        
        .container {
            width: 85%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 100px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--accent);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--highlight);
        }
        
        .hero {
            background-image: url(https://i.imgur.com/742wQL0.png/1200/600');
            background-size: cover;
            background-position: center;
            background-color: var(--primary);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 37, 63, 0.7);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background: var(--highlight);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .services {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .pricing-plan {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .pricing-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .plan-popular {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--highlight);
            color: var(--primary);
            font-weight: bold;
            font-size: 0.8rem;
            padding: 8px 15px;
            border-bottom-left-radius: 10px;
        }
        
        .plan-header {
            background: var(--primary);
            color: white;
            padding: 25px 20px;
            text-align: center;
        }
        
        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .pricing {
            margin: 15px 0;
        }
        
        .price-setup {
            font-size: 1.2rem;
            color: var(--accent);
            opacity: 0.9;
        }
        
        .price-monthly {
            font-size: 2.2rem;
            font-weight: bold;
        }
        
        .plan-features {
            padding: 30px 25px;
        }
        
        .plan-features ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .plan-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .plan-features li::before {
            content: "✓";
            color: var(--highlight);
            font-weight: bold;
            margin-right: 10px;
        }
        
        .plan-cta {
            text-align: center;
            padding-bottom: 30px;
        }
        
        .special-plans {
            margin-top: 60px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .special-plan {
            flex: 1;
            min-width: 280px;
            max-width: 400px;
            background: var(--primary);
            color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .special-plan h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .special-price {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .special-savings {
            color: var(--highlight);
            text-align: center;
            margin-bottom: 20px;
        }
        
        .about {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .testimonials {
            padding: 80px 0;
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial {
            background: #f5f5f5;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            font-size: 4rem;
            color: var(--highlight);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .author-name {
            font-weight: 600;
        }
        
        .author-title {
            font-size: 0.9rem;
            color: #777;
        }
        
        .cta {
            background: var(--primary);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
        }
        
        footer {
            background: #1a1a1a;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: var(--highlight);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--highlight);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #888;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        
        @media (max-width: 991px) {
            .pricing-container, .special-plans {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-plan, .special-plan {
                width: 100%;
                max-width: 400px;
                margin-bottom: 30px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                display: none;
                z-index: 100;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
    </style>