
        :root {
            --primary-color: #7ADAA5;
            --secondary-color: #239BA7;
            --accent-color: #ECECBB;
            --text-color: #212121;
            --cta-button: #E1AA36;
            --cta-text: #ffffff;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-nav {
            text-align: center;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .cta-btn {
            background-color: var(--cta-button);
            color: var(--cta-text);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: #d4951e;
            color: var(--cta-text);
            transform: translateY(-2px);
        }
        
        .hero-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .read-more-btn {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: var(--accent-color);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-color);
        }
        
        .vision-mission-box {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .vision-mission-box h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .why-choose-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-item {
            margin-bottom: 20px;
        }
        
        .feature-item i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card h5 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-color);
        }
        
        .cta-section {
            background-color: var(--secondary-color);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .faq-section {
            background-color: var(--accent-color);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }
        
        .review-card .stars {
            color: var(--cta-button);
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .contact-section {
            background-color: #f8f9fa;
        }
        
        .contact-info {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .contact-info i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .subscribe-section {
            background-color: var(--secondary-color);
            padding: 50px 0;
            color: white;
        }
        
        .subscribe-form input {
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            margin-right: 10px;
        }
        
        .subscribe-form button {
            background-color: var(--cta-button);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
            font-weight: 600;
        }
        
        footer {
            background-color: var(--text-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        footer h5 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-cta {
            background-color: var(--secondary-color);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        
        .footer-cta a {
            color: white;
            font-weight: 600;
            text-decoration: none;
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
            text-align: center;
        }
        
        .copyright a {
            color: #ddd;
            text-decoration: none;
        }
        
        .copyright a:hover {
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
