
        :root {
            --primary-color: #A98467;
            --secondary-color: #A8BBA3;
            --accent-color: #7C5C3B;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            position: absolute;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
        }
        
        .navbar .container {
            max-width: 1200px;
        }
        
        .nav-link {
            color: #f0efef !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #e6952e;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://media.istockphoto.com/id/1182454657/photo/bohemian-living-room-interior-3d-render.jpg?s=612x612&w=0&k=20&c=qw37MGIiTL_jML3_Tbm4bM-jNLCrocSWj7DanhBr_bY=');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card {
            border: 1px solid #eee;
        }
        
        .service-card .card-img-top {
            height: 180px;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 10px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.2rem;
        }
        
        .cta-section {
            background-color: var(--accent-color);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 15px;
        }
        
        .faq-item {
            border: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        .faq-question {
            cursor: pointer;
            padding: 15px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s;
        }
        
        .faq-answer.show {
            max-height: 200px;
            padding: 15px;
        }
        
        .review-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-right: 15px;
        }
        
        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-link {
            color: #666;
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--accent-color);
        }
        
        .newsletter-input {
            border-radius: 50px;
            padding: 12px 20px;
            border: 1px solid #ddd;
        }
        
        .newsletter-btn {
            background-color: var(--accent-color);
            border: none;
            border-radius: 50px;
            padding: 12px 25px;
        }
        
        .read-more-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .read-more-btn:hover {
            background-color: #7e8e6a;
            transform: translateY(-2px);
        }
