
        body { font-family: Arial, sans-serif; margin:0; background-color: #f5f5f5; color:#333; line-height:1.6; }
        a { text-decoration:none; }
        header {
            position: sticky;
            top: 0;
            background: linear-gradient(90deg, #E4405F, #FF6B6B);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 100;
        }
        header .logo { font-size:1.8em; font-weight:bold; color:white; }
        header nav a {
            color:white;
            margin:0 15px;
            font-weight:600;
            padding:8px 15px;
            border-radius:5px;
            transition: all 0.3s ease;
        }
        header nav a:hover { background-color: rgba(255,255,255,0.2); transform: scale(1.05); }

        main { padding:50px 20px 0px; }

        /* Conteneur central */
        .container { max-width:1200px; margin:0 auto; padding:0 20px; text-align:center; }

        /* Header Section */
        .header-section h1 { font-size:2.5em; font-weight:700; margin-bottom:10px; }
        .header-section h2 { font-size:1.5em; font-weight:400; margin-bottom:20px; color:#555; }

        /* Prestations */
        .prestations { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:50px; }
        .prestation { background:white; border-radius:10px; padding:20px; width:270px; box-shadow:0 4px 8px rgba(0,0,0,0.1); text-align:left; transition: transform 0.2s, box-shadow 0.2s; }
        .prestation:hover { transform: translateY(-5px); box-shadow:0 8px 16px rgba(0,0,0,0.2); }
        .prestation img { width:100%; height:250px; object-fit:cover; border-radius:8px; margin-bottom:15px; }
        .prestation i { font-size:30px; margin-bottom:10px; color:#25D366; }
        .tarif { font-weight:bold; margin-top:10px; color:#E4405F; }

        /* Contact */
        .contact-info { margin:40px 0; text-align:center; }
        .contact-info a { display:inline-flex; align-items:center; margin:10px; padding:10px 20px; color:white; border-radius:5px; font-weight:bold; transition: all 0.2s ease; }
        .contact-info a i { margin-right:8px; }
        .contact-info a:hover { transform: scale(1.05); }

        .facebook { background-color: #3b5998; }
        .instagram { background-color: #E4405F; }
        .email { background-color: #DD4B39; }
        .phone, .whatsapp { background-color: #25D366; }

        .cta-button {
            display:inline-block;
            background-color:#E4405F;
            color:white;
            font-weight:bold;
            padding:15px 30px;
            border-radius:10px;
            margin-top:20px;
            transition: transform 0.2s;
        }
        .cta-button:hover { transform: scale(1.05); }

        .location { margin-top:20px; color:#333; }
		
#faq { padding:50px 20px; background:#f9f9f9; }
#faq .container { max-width:800px; margin:0 auto; }
#faq h2 { text-align:center; margin-bottom:40px; font-size:2em; }

.faq-item { margin-bottom:15px; border-bottom:1px solid #ddd; }
.faq-question {
    width:100%;
    background:white;
    color:#E4405F;
    cursor:pointer;
    padding:15px 20px;
    border:none;
    text-align:left;
    font-size:1.1em;
    font-weight:600;
    outline:none;
    transition: background 0.3s;
}
.faq-question:hover { background:#ffe6eb; }

.faq-answer {
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    background:white;
    padding:0 20px;
}

.faq-answer p { margin:15px 0;     text-align: left;}

.site-footer {
    background:#E4405F;
    color:#fff;
    padding:20px 0;
    text-align:center;
    font-size:0.9em;
}

.site-footer a {
    color:#fff;
    text-decoration:underline;
}

.site-footer a:hover {
    color:#ffe6eb;
}

.mentions .container {
	text-align : left;
}