        :root {
            --primary: #3A6B64;
            --primary-light: #75A89E;
            --primary-dark: #274C45;
            --secondary: #D9A441;
            --secondary-light: #F1C97A;
            --secondary-dark: #A9792A;
            --accent: #E26A6A;
            --accent-light: #F29B9B;
            --accent-dark: #B54646;
            --background: #F9F7F1;
            --text: #2E2E2E;
            --text-secondary: #595959;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
font-family: 'Poppins', Arial, sans-serif;
            background-color: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .navbar {
            background-color: var(--primary);
            border: none;
            border-radius: 0;
            margin-bottom: 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            color: #fff !important;
            font-weight: 700;
            font-size: 24px;
            padding: 15px;
        }

        .navbar-nav > li > a {
            color: #fff !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .navbar-nav > li > a:hover {
            color: var(--secondary-light) !important;
        }

        .navbar-toggle {
            border: 2px solid #fff;
        }

        .navbar-toggle .icon-bar {
            background-color: #fff;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/modern-interior-hero-bg.jpeg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-primary-custom {
            background-color: var(--secondary);
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            color: var(--text);
        }

        .btn-primary-custom:hover {
            background-color: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #fff;
            font-size: 2rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.7;
            text-align: center;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .testimonial-role {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .stats-section {
            background: var(--primary);
            color: #fff;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-light);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .contact-section {
            background: var(--background);
            padding: 80px 0;
        }

        .contact-info {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 15px;
        }

        .footer {
            background: var(--primary-dark);
            color: #fff;
            padding: 40px 0 20px;
        }

        .footer-section {
            margin-bottom: 30px;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-light);
        }

        .footer-link {
            color: #fff;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-link:hover {
            opacity: 1;
            color: var(--secondary-light);
            text-decoration: none;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            text-align: center;
            opacity: 0.7;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            color: #fff;
            padding: 20px;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            margin-bottom: 10px;
        }

        .btn-cookie {
            background: var(--secondary);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            color: var(--text);
            font-weight: 600;
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 50px 0;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn-primary-custom {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }

        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .team-role {
            color: var(--text-secondary);
            font-weight: 500;
        }