
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       :root {
    --royal-green: #ff6f61;     /* Coral */
    --deep-royal: #d94f40;      /* Dark Coral */
    --gold: #ffc857;            /* Bright Yellow */
    --light-gold: #ffe8a1;      /* Light Yellow */
    --dark-navy: #2c1a36;       /* Dark Purple */
    --light-blue: #f6f1ff;      /* Lavender */
    --text-dark: #3e2c41;       /* Dark Mauve */
    --text-light: #ffffff;      /* White */
}


        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--royal-green) 0%, var(--deep-royal) 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            border-bottom: 3px solid var(--gold);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo i {
            color: var(--gold);
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(255, 111, 97, 0.7), rgba(255, 111, 97, 0.7)), url('../img/hero.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            color: var(--light-gold);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gold);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
            background: var(--light-gold);
        }

        /* About Preview */
        .about {
            padding: 5rem 5%;
            background: var(--light-blue);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border: 5px solid var(--gold);
            padding: 10px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content h2 {
            color: var(--royal-green);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--gold);
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 5rem 5%;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--royal-green);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: var(--gold);
        }

        .badges-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .badge {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
            border-radius: 15px;
            border: 2px solid var(--gold);
            transition: all 0.3s;
            cursor: pointer;
        }

        .badge:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
        }

        .badge-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .badge h3 {
            color: var(--royal-green);
            margin-bottom: 0.5rem;
        }

        /* Services */
        .services {
            padding: 5rem 5%;
            background: var(--light-blue);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border: 3px solid var(--gold);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--light-gold));
        }

        .service-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--royal-green);
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 5%;
            background: white;
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--royal-green) 0%, var(--deep-royal) 100%);
            clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
            z-index: -1;
        }

        .carousel-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border: 5px solid var(--gold);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .testimonial-slide {
            display: none;
            text-align: center;
            animation: fadeIn 0.5s;
        }

        .testimonial-slide.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid var(--gold);
        }

        .author-info h4 {
            color: var(--royal-green);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            background: var(--gold);
            border: none;
            color: var(--text-dark);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-btn:hover {
            background: var(--light-gold);
            transform: scale(1.1);
        }

        /* FAQ */
        .faq {
            padding: 5rem 5%;
            background: var(--light-blue);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 2px solid var(--gold);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--royal-green) 0%, var(--deep-royal) 100%);
            color: var(--text-light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, var(--deep-royal) 0%, var(--royal-green) 100%);
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        /* Contact Form */
        .contact {
            padding: 5rem 5%;
            background: white;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
            padding: 3rem;
            border: 3px solid var(--gold);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--royal-green);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--gold);
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--royal-green);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: var(--gold);
            color: var(--text-dark);
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: var(--light-gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        /* Success Message */
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: var(--gold);
            color: var(--text-dark);
            padding: 2rem 3rem;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            z-index: 2000;
            text-align: center;
            transition: all 0.3s;
        }

        .success-message.show {
            transform: translate(-50%, -50%) scale(1);
        }

        .success-message i {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        /* Footer */
        footer {
            background: var(--dark-navy);
            color: var(--text-light);
            padding: 3rem 5%;
            text-align: center;
            border-top: 3px solid var(--gold);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-icons a {
            color: var(--text-light);
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: var(--gold);
            transform: translateY(-3px);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 3000;
            overflow-y: auto;
        }

        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 3rem;
            width: 90%;
            max-width: 800px;
            border: 3px solid var(--gold);
            border-radius: 15px;
            position: relative;
            animation: slideIn 0.3s;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--gold);
        }

        /* Legal Document Style */
        .legal-document {
            font-family: 'Times New Roman', serif;
            line-height: 1.8;
            color: #333;
        }

        .legal-document h2 {
            color: var(--royal-green);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .legal-document h3 {
            color: var(--deep-royal);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .legal-document p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        /* Newsletter Popup */
        .newsletter-form {
            background: linear-gradient(135deg, var(--light-blue) 0%, white 100%);
            padding: 2rem;
            border: 3px solid var(--gold);
            border-radius: 10px;
        }

        .newsletter-form h2 {
            color: var(--royal-green);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .about-container {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .badges-container {
                grid-template-columns: 1fr;
            }
        }

        /* Newsletter Trigger Button */
        .newsletter-trigger {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: var(--text-dark);
            padding: 1rem;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s;
            z-index: 999;
        }

        .newsletter-trigger:hover {
            transform: scale(1.1);
            background: var(--light-gold);
        }
    