
        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #E6E6FA;
            --background-color: #E3DAC9;
            --text-color: #FFFFFF;
            --accent-color: #F5F5DC;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background-color: #fff;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 15px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .cta-btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: #7A1FD4;
            color: var(--text-color);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
            background-size: cover;
            background-position: center;
            color: var(--text-color);
            padding: 150px 0;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .hero-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        /* About Section */
        .about-section {
            background-color: var(--background-color);
        }
        
        .about-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .about-content p {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .read-more-btn {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            background-color: #7A1FD4;
            color: var(--text-color);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-box p {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission Section */
        .vision-mission-section {
            background-color: var(--secondary-color);
        }
        
        .vision-mission-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .vision-mission-box h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .vision-mission-box p {
            line-height: 1.7;
        }
        
        /* Why Choose Us Section */
        .why-choose-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .why-choose-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .why-choose-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .why-choose-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--background-color);
        }
        
        .service-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-content {
            padding: 25px;
        }
        
        .service-card-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-card-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(138, 43, 226, 0.9), rgba(138, 43, 226, 0.9)), url('https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: var(--text-color);
            text-align: center;
            padding: 100px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn-large {
            background-color: var(--text-color);
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-btn-large:hover {
            background-color: #f0f0f0;
            color: var(--primary-color);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--secondary-color);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }
        
        /* Review Section */
        .review-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .review-card .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            margin-bottom: 20px;
            line-height: 1.7;
            font-style: italic;
        }
        
        .review-card .client-info {
            display: flex;
            align-items: center;
        }
        
        .review-card .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .client-info h5 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .review-card .client-info p {
            margin: 0;
            font-size: 0.9rem;
            font-style: normal;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            padding: 15px;
            border: none;
            border-radius: 4px;
            margin-bottom: 15px;
            width: 100%;
        }
        
        .newsletter-form button {
            background-color: var(--text-color);
            color: var(--primary-color);
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #f0f0f0;
            color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--background-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        .contact-info-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        
        .contact-form button {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: #7A1FD4;
            color: var(--text-color);
        }
        
        /* Footer Styles */
        footer {
            background-color: #333;
            color: var(--text-color);
            padding: 70px 0 0;
        }
        
        .footer-col h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-cta {
            background-color: var(--primary-color);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
        }
        
        .footer-cta h4 {
            margin-bottom: 15px;
        }
        
        .footer-cta a {
            display: inline-block;
            background-color: var(--text-color);
            color: var(--primary-color);
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .footer-cta a:hover {
            background-color: #f0f0f0;
            color: var(--primary-color);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
            text-align: center;
        }
        
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .navbar-nav .nav-item {
                margin: 0 8px;
            }
        }
