
        :root{
--primary-color:#5C4033;
--secondary-color:#8D6E63;
--accent-color:#A1887F;
--surface-color:#D7CCC8;
--light-color:#EFEBE9;
--dark-color:#5C4033;
}
        
        body {
            font-family: 'Poppins','Merriweather',sans-serif;
            color: var(--dark-color);
        }
        
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--dark-color) !important;
        }
        
        .navbar-brand i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #d55a3d;
            border-color: #d55a3d;
        }
        
        .hero-section {
            background: linear-gradient(rgba(41, 50, 65, 0.7), rgba(41, 50, 65, 0.7)), url('https://images.pexels.com/photos/4386466/pexels-photo-4386466.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: var(--light-color);
            text-align: center;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 50px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
            background-color: var(--secondary-color);
            border-radius: 10px;
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-step .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--light-color);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            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-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            background-color: var(--light-color);
        }
        
        .service-card-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .review-card {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .review-card .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-item .faq-question {
            padding: 20px;
            background-color: var(--secondary-color);
            color: var(--light-color);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-item .faq-answer {
            padding: 20px;
            background-color: var(--light-color);
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .cta-section {
            background-color: var(--primary-color);
            padding: 80px 0;
            text-align: center;
            color: var(--light-color);
        }
        
        .contact-section {
           
            padding: 80px 0;
            color: black;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: black;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 80px 0 30px;
        }
        
        .footer-widget {
            margin-bottom: 40px;
        }
        
        .footer-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-widget h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-widget ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 12px;
        }
        
        .footer-widget ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-widget ul li a:hover {
            color: var(--primary-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            padding: 0 20px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #d55a3d;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .copyright a {
            color: white;
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 767px) {
            .process-step::after {
                display: none;
            }
        }
