
        :root {
            --primary-color: #4CAF50;
            --secondary-color: #F1F8E9;
            --accent-color: #FFC107;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
        }
        
        .navbar-nav {
            text-align: center;
            width: 100%;
            justify-content: center;
        }
        
        .navbar-nav .nav-item {
            margin: 0 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .cta-btn {
            background-color: var(--accent-color);
            color: #333;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .cta-btn:hover {
            background-color: #e0a800;
            color: #333;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background-color: #272727;
        }
        
        .hero-title {
            font-size: 6rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #3d8b40;
            transform: translateY(-2px);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--secondary-color);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .counter-title {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
        }
        
        /* Vision Mission Section */
        .vision-mission-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .vision-mission-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        /* Services Section */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width:1000px;
            margin: 0 auto 10px;
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            color: #333;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-accent:hover {
            background-color: #e0a800;
            color: #333;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        /* Client Reviews */
        .review-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .review-stars {
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: #333;
        }
        
        .reviewer-location {
            font-size: 0.9rem;
            color: #777;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--secondary-color);
        }
        
        .newsletter-form .form-control {
            border-radius: 30px;
            border: none;
            padding: 12px 20px;
        }
        
        .newsletter-form .btn {
            background-color: var(--primary-color);
            border: none;
            border-radius: 30px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .newsletter-form .btn:hover {
            background-color: #3d8b40;
        }
        
        /* Contact Section */
        .contact-info-item {
            margin-bottom: 20px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
        }
        
        .contact-form .btn {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .contact-form .btn:hover {
            background-color: #3d8b40;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: #ddd;
            padding: 70px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-cta {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            border-radius: 5px;
            text-align: center;
            text-decoration: none;
            display: block;
            margin-top: 20px;
            transition: all 0.3s;
        }
        
        .footer-cta:hover {
            background-color: #3d8b40;
            color: white;
        }
        
        .copyright {
            border-top: 1px solid #444;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright-links a {
            color: #ddd;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .copyright-links a:hover {
            color: var(--primary-color);
        }
