
        :root {
            --primary-color: #6b9080;
            --secondary-color: #a4c3b2;
            --light-accent: #cce3de;
            --bg-light: #eaf4f4;
            --bg-soft: #f6fff8;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        /* --- Navbar Styles --- */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease-in-out;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            color: #555 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .navbar-light .navbar-toggler {
            border-color: var(--primary-color);
        }
        .navbar-light .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28107, 144, 128, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .cta-btn-nav {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 50px;
            padding: 8px 20px !important;
            border: 2px solid var(--primary-color);
            transition: all 0.3s;
        }
        .cta-btn-nav:hover {
            background-color: transparent;
            color: var(--primary-color) !important;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(107, 144, 128, 0.6), rgba(107, 144, 128, 0.6)), url('https://wallpapercave.com/wp/wp6938358.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        .hero-section h1 {
            font-weight: 700;
            font-size: 5rem;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }
        .cta-btn-hero {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        .cta-btn-hero:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* --- Section Padding & Titles --- */
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .section-subtitle {
            color: #666;
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        /* --- About Us Section --- */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .about-content h3 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .about-content p {
            line-height: 1.8;
            color: #555;
        }
        .read-more-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            display: inline-block;
        }
        .read-more-btn:hover {
            color: var(--secondary-color);
        }
        .read-more-btn i {
            margin-left: 5px;
        }

        /* --- Counter Section --- */
        .counter-section {
            background-color: var(--bg-light);
        }
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .counter-box p {
            color: #666;
            font-weight: 500;
        }

        /* --- Vision & Mission Section --- */
        .vision-mission-box {
            background-color: var(--bg-soft);
            padding: 40px;
            border-radius: 10px;
            height: 100%;
            border-left: 5px solid var(--primary-color);
        }
        .vision-mission-box h4 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .vision-mission-box p {
            line-height: 1.8;
            color: #555;
        }

        /* --- Why Choose Us Section --- */
        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .feature-box h5 {
            font-weight: 600;
            margin-bottom: 15px;
        }
        .feature-box p {
            color: #666;
            font-size: 0.95rem;
        }

        /* --- Services Section --- */
        .services-section {
            background-color: var(--bg-light);
        }
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card-body h5 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .service-card-body p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.7;
            flex-grow: 1;
        }
        .service-card-body .read-more-btn {
            margin-top: 20px;
            align-self: flex-start;
        }

        /* --- Reviews Section --- */
        .review-card {
            background-color: var(--bg-soft);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid var(--secondary-color);
        }
        .review-card p {
            font-style: italic;
            color: #555;
            line-height: 1.7;
        }
        .review-card h6 {
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 15px;
        }
        .review-card .rating {
            color: #ffc107;
        }

        /* --- FAQ Section --- */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-accent);
            color: var(--primary-color);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        .accordion-button {
            font-weight: 500;
        }
        
        /* --- CTA Section --- */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        .cta-section h3 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px auto;
            font-weight: 300;
        }
        .cta-btn-final {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        .cta-btn-final:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        /* --- Contact Section --- */
        .contact-info-box {
            background-color: var(--bg-soft);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }
        .contact-info-box h5 {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .contact-info-box p {
            margin-bottom: 10px;
            color: #555;
        }
        .contact-info-box i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 12px;
        }
        .contact-form .form-control:focus, .contact-form .form-select:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            font-weight: 600;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }

        /* --- Footer --- */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        footer p, footer li {
            color: #bdc3c7;
            line-height: 1.8;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer ul li a:hover {
            color: var(--primary-color);
        }
        .newsletter-form .form-control {
            background-color: #34495e;
            border: 1px solid #34495e;
            color: white;
            border-radius: 0;
        }
        .newsletter-form .form-control:focus {
            box-shadow: none;
            background-color: #34495e;
            color: white;
        }
        .newsletter-form .btn {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            font-weight: 600;
        }
        .newsletter-form .btn:hover {
            background-color: var(--secondary-color);
        }
        .copyright {
            border-top: 1px solid #34495e;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #95a5a6;
        }
        .copyright a {
            color: #bdc3c7;
            text-decoration: none;
        }
        .copyright a:hover {
            color: var(--primary-color);
        }
