
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #e0e6ed;
            overflow-x: hidden;
        }

        /* Color Variables */
        :root {
            --navy: #1a2639;
            --navy-dark: #0f1a26;
            --emerald: #10b981;
            --gold: #f59e0b;
            --gold-light: #fbbf24;
            --white: #f8fafc;
            --gray-800: #1e293b;
            --gray-700: #334155;
        }

        /* Header */
        .top-bar {
            background: var(--navy-dark);
            padding: 0.5rem 0;
            font-size: 0.875rem;
            text-align: center;
        }

        .header {
            background: var(--navy);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold), var(--emerald));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--emerald), var(--gold));
            color: var(--navy-dark);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="none"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(245,158,11,0.1)"/><circle cx="75" cy="75" r="0.5" fill="rgba(16,185,129,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--white), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            color: #cbd5e1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--emerald), var(--gold));
            color: var(--navy-dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.5rem;
            border: 2px solid var(--gold);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--navy-dark);
            transform: translateY(-2px);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            flex-wrap: wrap;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .badge:hover {
            background: rgba(245,158,11,0.2);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section {
            padding: 6rem 0;
        }

        .section-dark {
            background: var(--navy);
        }

        .section-gradient {
            background: linear-gradient(135deg, var(--gray-800) 0%, var(--navy-dark) 100%);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--gold), var(--emerald));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        /* About Preview */
        .about-preview {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-highlight {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .highlight-item {
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: rgba(245,158,11,0.1);
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .highlight-item i {
            font-size: 2.5rem;
            color: var(--emerald);
            margin-bottom: 1rem;
        }

        /* Cards */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .premium-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .premium-card:hover {
            transform: translateY(-10px);
            background: rgba(245,158,11,0.15);
            border-color: var(--gold);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .premium-card i {
            font-size: 3rem;
            color: var(--emerald);
            margin-bottom: 1.5rem;
        }

        .premium-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .service-category {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .service-category:hover {
            transform: translateY(-5px);
            background: rgba(16,185,129,0.1);
            border-color: var(--emerald);
        }

        .service-category h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .service-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--emerald), var(--gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1rem;
            color: var(--navy-dark);
        }

        /* Testimonials */
        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            position: relative;
        }

        .testimonial {
            padding: 3rem 2rem;
            text-align: center;
            opacity: 0.7;
            transform: translateX(100%);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #e2e8f0;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--white);
        }

        .testimonial-profession {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        /* FAQ */
        .faq-item {
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            background: rgba(255,255,255,0.03);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(245,158,11,0.1);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            padding: 0 2rem;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 1.5rem 2rem;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--white);
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--emerald);
            box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
            background: rgba(255,255,255,0.15);
        }

        .form-control::placeholder {
            color: #94a3b8;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        select.form-control {
            cursor: pointer;
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, var(--emerald), var(--gold));
            color: var(--navy-dark);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Newsletter */
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin: 1.5rem 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin: 0;
        }

        /* Legal */
        .legal-section {
            background: var(--navy-dark);
            padding: 4rem 0;
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .legal-card {
            background: rgba(255,255,255,0.03);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Footer */
        .footer {
            background: var(--navy-dark);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer h4 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .footer a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--navy-dark);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #64748b;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.8s ease forwards;
        }
    