
        :root {
            --primary-color: #3b4d3a;
            --secondary-color: #d8cbb6;
            --background-color: #f8f6f1;
            --text-color: #2b2b2b;
            --accent-color: #b85c38;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            background-color: var(--background-color);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 15px;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .cta-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: var(--accent-color);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 80px 0;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .hero-btn {
            background-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .hero-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Section Styles */
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .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: var(--text-color);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        /* About Section */
        .about-section {
            background-color: white;
        }
        
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more-btn {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--primary-color);
        }
        
        .read-more-btn i {
            margin-left: 5px;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission Section */
        .vision-mission-item {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .vision-mission-item i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .vision-mission-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us Section */
        .why-choose-item {
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .why-choose-item:hover {
            transform: translateY(-10px);
        }
        
        .why-choose-item i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .why-choose-item h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        /* Services Section */
        .services-section {
            background-color: white;
        }
        
        .service-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px 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-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .service-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            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;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-btn-large {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-btn-large:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-header {
            border: none;
        }
        
        .accordion-button {
            background-color: var(--background-color);
            color: var(--primary-color);
            font-weight: 600;
            padding: 15px 20px;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        
        .accordion-body {
            padding: 20px;
        }
        
        /* Client Review Section */
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0;
        }
        
        .review-info p {
            margin: 0;
            color: var(--text-color);
            font-size: 0.9rem;
        }
        
        .review-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            line-height: 1.6;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--background-color);
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-section {
            background-color: white;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-item p {
            margin: 0;
            line-height: 1.6;
        }
        
        .contact-form input,
        .contact-form textarea {
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .contact-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-col h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-col p {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-newsletter input {
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .footer-newsletter button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            font-weight: 500;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter button:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--accent-color);
        }
        
        /* Responsive */
        @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-top: 60px;
                padding-bottom: 60px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
        }

        .service-card {
            height: 100%;
            transition: transform 0.3s ease;
            border: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .service-img {
            height: 200px;
            object-fit: cover;
        }
        .service-desc {
            height: 120px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #0d6efd;
        }