        :root {
            --primary-color: #2ec4b6;
            --secondary-color: #ff9f1c;
            --background-color: #ffbf69;
            --text-color: #ffffff;
            --accent-color: #cbf3f0;
            --dark-text: #333333;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
            box-shadow: none;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 15px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-text);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .cta-btn {
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: #e68900;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(46, 196, 182, 0.8), rgba(46, 196, 182, 0.8));
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            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.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--accent-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(--dark-text);
        }
        
        .read-more-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            background-color: #26a89c;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Vision & Mission Section */
        .vision-mission-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            background-color: var(--accent-color);
        }
        
        .choose-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .choose-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .choose-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .choose-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-text);
        }
        
        /* Services Section */
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-text);
        }
        
        .service-card-body p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(46, 196, 182, 0.9), rgba(46, 196, 182, 0.9)), url('https://images.pexels.com/photos/4021779/pexels-photo-4021779.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .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(--secondary-color);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .cta-btn-large:hover {
            background-color: #e68900;
            color: white;
            transform: translateY(-3px);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--accent-color);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }
        
        /* Review Section */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .review-card .rating {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .review-card h5 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .review-card .location {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .review-card p {
            color: #555;
            font-style: italic;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            border-radius: 50px;
            padding: 12px 20px;
            border: none;
            margin-bottom: 15px;
        }
        
        .newsletter-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #e68900;
            transform: translateY(-2px);
        }
        
        /* Contact Section */
        .contact-info {
            background-color: var(--accent-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-info h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 15px;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form input, .contact-form textarea {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .contact-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: #26a89c;
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-text);
            color: white;
            padding: 70px 0 20px;
        }
        
        footer h5 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-cta {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .footer-cta:hover {
            background-color: #26a89c;
            transform: translateY(-2px);
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #aaa;
        }
        
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .navbar-nav .nav-item {
                margin: 5px 0;
            }
        }
