
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

:root {
    --royal-blue: #8e44ad;    /* Purple */
    --deep-blue: #4b0082;     /* Indigo */
    --gold: #dda0dd;          /* Plum */
    --light-gold: #f3e5f5;    /* Lavender */
    --white: #ffffff;          /* White */
    --light-gray: #f5f5f5;     /* Soft Gray */
}



        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--royal-blue), var(--deep-blue));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(142, 68, 173, 0.8)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231e3a8a" width="1200" height="600"/><circle cx="600" cy="300" r="250" fill="%23fbbf24" opacity="0.1"/></svg>');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 8rem 2rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .cta-btn {
            background: var(--gold);
            color: var(--deep-blue);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(251, 191, 36, 0.4);
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--royal-blue), var(--gold));
            border: 4px solid var(--gold);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white);
        }

        .about-content h2 {
            color: var(--royal-blue);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid var(--gold);
            padding-bottom: 0.5rem;
        }

        /* Why Choose Us */
        .why-choose {
            background: var(--light-gray);
            padding: 5rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--royal-blue);
            margin-bottom: 3rem;
            border-bottom: 3px solid var(--gold);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .badge {
            background: var(--white);
            padding: 2rem;
            border: 3px solid var(--gold);
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .badge:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .badge-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .badge h3 {
            color: var(--royal-blue);
            margin-bottom: 0.5rem;
        }

        /* Services */
        .services {
            padding: 5rem 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, var(--royal-blue), var(--deep-blue));
            color: var(--white);
            padding: 2rem;
            border: 4px solid var(--gold);
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: scale(1.05);
        }

        .service-card h3 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Testimonials */
        .testimonials {
            background: var(--royal-blue);
            padding: 5rem 2rem;
            color: var(--white);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 2rem auto;
            background: rgba(255, 255, 255, 0.1);
            border: 3px solid var(--gold);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
        }

        .testimonial {
            display: none;
            text-align: center;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial p {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            color: var(--gold);
            font-weight: bold;
        }

        .slider-controls {
            text-align: center;
            margin-top: 2rem;
        }

        .slider-btn {
            background: var(--gold);
            color: var(--deep-blue);
            border: none;
            padding: 0.5rem 1.5rem;
            margin: 0 0.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
        }

        /* FAQ */
        .faq {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }

        .faq-item {
            background: var(--white);
            border: 2px solid var(--gold);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            background: var(--royal-blue);
            color: var(--white);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }

        .faq-question:hover {
            background: var(--deep-blue);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        /* Contact Form */
        .contact {
            padding: 5rem 2rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background: var(--white);
            padding: 3rem;
            border: 4px solid var(--gold);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--royal-blue);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--gold);
            border-radius: 5px;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: var(--deep-blue);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            font-size: 1.5rem;
        }

        .social-icons a {
            color: var(--gold);
            display: inline-block;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            padding: 3rem;
            border: 5px solid var(--gold);
            border-radius: 20px;
            max-width: 600px;
            width: 90%;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--royal-blue);
        }

        .success-message {
            text-align: center;
            color: var(--royal-blue);
        }

        .success-message h2 {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* Legal Pages */
        .legal-page {
            max-width: 900px;
            margin: 3rem auto;
            padding: 3rem;
            background: var(--white);
            border: 3px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .legal-page h1 {
            color: var(--royal-blue);
            border-bottom: 3px solid var(--gold);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }

        .legal-page h2 {
            color: var(--royal-blue);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        /* Newsletter */
        .newsletter-btn {
            background: var(--gold);
            color: var(--deep-blue);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-group input {
            width: auto;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .about {
                grid-template-columns: 1fr;
            }
        }
    