
        :root {
            --dark-navy: #0a192f;
            --emerald-green: #2e8b57;
            --emerald-dark: #1b4332;
            --gold: #d4af37;
            --gold-light: #f3e5ab;
            --gold-dark: #b8962c;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #495057;
            --black: #212529;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
            color: var(--dark-navy);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark-navy);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--gold), var(--emerald-green));
        }

        .section-title p {
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(to right, var(--gold), var(--gold-dark));
            color: var(--dark-navy);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            background: linear-gradient(to right, var(--gold-light), var(--gold));
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--dark-navy);
        }

        /* Header Styles */
        .top-bar {
            background-color: var(--dark-navy);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-contact {
            display: flex;
            gap: 20px;
        }

        .top-bar-contact span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-navy);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            color: var(--gold);
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-navy);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--emerald-green);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--dark-navy);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark-navy) 0%, #112240 100%);
            color: var(--white);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e8b57' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--gold);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: var(--light-gray);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--light-gray);
            font-size: 0.95rem;
        }

        .trust-badge i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* About Preview */
        .about-preview {
            background-color: var(--light-gray);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark-navy);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .about-highlights {
            margin-top: 30px;
        }

        .highlight {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .highlight i {
            color: var(--emerald-green);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .highlight h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-navy);
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--shadow-hover);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--gold);
            border-radius: 8px;
            z-index: -1;
        }

        /* Why Choose Us */
        .why-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .why-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--gold);
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .why-card i {
            font-size: 2.5rem;
            color: var(--emerald-green);
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-navy);
        }

        /* Services */
        .services {
            background-color: var(--dark-navy);
            color: var(--white);
        }

        .services .section-title h2 {
            color: var(--white);
        }

        .services .section-title p {
            color: var(--light-gray);
        }

        .services-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
        }

        .category-btn {
            padding: 12px 30px;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .category-btn.active, .category-btn:hover {
            background: var(--gold);
            color: var(--dark-navy);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 30px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .service-card h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card h3 i {
            color: var(--emerald-green);
        }

        .service-card p {
            color: var(--light-gray);
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--light-gray);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li i {
            color: var(--emerald-green);
            font-size: 0.8rem;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 40px;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            text-align: center;
            margin: 0 15px;
        }

        .testimonial-content {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 30px;
            line-height: 1.8;
            position: relative;
        }

        .testimonial-content::before, .testimonial-content::after {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-content::before {
            top: -10px;
            left: -10px;
        }

        .testimonial-content::after {
            bottom: -30px;
            right: -10px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--emerald-green), var(--dark-navy));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--white);
            font-size: 1.8rem;
            font-weight: 600;
        }

        .author-name {
            font-weight: 700;
            color: var(--dark-navy);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-profession {
            color: var(--emerald-green);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .rating {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--white);
            border: 2px solid var(--gold);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn:hover {
            background-color: var(--gold);
            color: var(--dark-navy);
        }

        /* FAQ */
        .faq {
            background-color: var(--white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 20px 25px;
            background-color: var(--light-gray);
            font-weight: 600;
            color: var(--dark-navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--medium-gray);
        }

        .faq-question i {
            color: var(--emerald-green);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: var(--white);
        }

        .faq-answer.active {
            padding: 20px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Get In Touch */
        .contact {
            background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-green) 100%);
            color: var(--white);
            position: relative;
        }

        .contact .section-title h2 {
            color: var(--white);
        }

        .contact .section-title p {
            color: var(--light-gray);
        }

        .contact-container {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--light-gray);
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow-hover);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-navy);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--emerald-green);
            box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-success {
            display: none;
            background-color: rgba(46, 139, 87, 0.1);
            color: var(--emerald-dark);
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
            border: 1px solid var(--emerald-green);
        }

        /* Legal Modules */
        .legal-modules {
            background-color: var(--light-gray);
        }

        .legal-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .legal-tab {
            padding: 12px 30px;
            background-color: var(--white);
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark-navy);
            transition: var(--transition);
        }

        .legal-tab.active, .legal-tab:hover {
            background-color: var(--emerald-green);
            color: var(--white);
            border-color: var(--emerald-green);
        }

        .legal-content {
            background-color: var(--white);
            border-radius: 8px;
            padding: 40px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: 0 auto;
            display: none;
        }

        .legal-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .legal-content h3 {
            color: var(--dark-navy);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .legal-content p {
            margin-bottom: 15px;
            color: var(--dark-gray);
        }

        .legal-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .legal-content li {
            margin-bottom: 8px;
            color: var(--dark-gray);
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--dark-navy) 0%, #112240 100%);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }

        .newsletter h2 {
            color: var(--white);
            margin-bottom: 15px;
        }

        .newsletter p {
            color: var(--light-gray);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .newsletter-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .newsletter-row .form-group {
            flex: 1;
            min-width: 200px;
            margin-bottom: 0;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 25px;
            text-align: left;
        }

        .checkbox-group input {
            margin-top: 3px;
        }

        .checkbox-group label {
            color: var(--light-gray);
            font-size: 0.9rem;
        }

        .newsletter-success {
            display: none;
            background-color: rgba(46, 139, 87, 0.1);
            color: var(--gold-light);
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: center;
            border: 1px solid var(--gold);
        }

        /* Footer */
        .footer {
            background-color: #08142e;
            color: var(--light-gray);
            padding: 70px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--emerald-green);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .footer-links i {
            color: var(--emerald-green);
            font-size: 0.8rem;
        }

        .contact-info-footer {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .contact-info-footer i {
            color: var(--gold);
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-gray);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--gold);
            color: var(--dark-navy);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--medium-gray);
        }

        .disclaimer {
            font-size: 0.8rem;
            color: var(--dark-gray);
            margin-top: 10px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.4s ease;
                z-index: 1001;
                padding: 20px;
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-toggle {
                display: block;
                z-index: 1002;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image::before {
                display: none;
            }

            .contact-container {
                flex-direction: column;
            }

            .newsletter-row {
                flex-direction: column;
            }

            .newsletter-row .form-group {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .top-bar-contact {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mt-30 {
            margin-top: 30px;
        }

        .mb-30 {
            margin-bottom: 30px;
        }

        .gold-text {
            color: var(--gold);
        }

        .emerald-text {
            color: var(--emerald-green);
        }
    