
        :root {
            --primary-color: #FF6B6B;
            --accent-color: #4ECDC4;
            --light-gray: #E6E6E6;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            background-color: transparent !important;
            padding: 1.5rem 0;
        }
        
        .navbar .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
        }
        
        .navbar .btn-primary:hover {
            background-color: #d8814a;
        }
        
        .hero-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 31, 61, 0.8), rgba(0, 31, 61, 0.8)), 
                        url('https://www.plan-it-all.com/wp-content/uploads/2026/01/renovation-virtuelle-19.png');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .btn-primary-custom {
            background-color: var(--accent-color);
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #d8814a;
            transform: translateY(-2px);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--accent-color);
            color: white;
        }
        
        .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;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            background-color: var(--light-gray);
            border-radius: 10px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .counter-label {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-top: 10px;
        }
        
        .why-choose-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .why-choose-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .why-choose-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .faq-item {
            border: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 15px 20px;
            background-color: white;
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--accent-color);
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
        }
        
        .copyright a {
            color: var(--accent-color);
        }
