/* --- Variables - Palette extraite du logo Mel's Touch --- */
:root {
    --bg-color: #faeced; /* Un fond rose poudré plus prononcé, en harmonie avec l'aquarelle */
    --brand-blush: #f2e1e2; /* Le rose aquarelle du logo */
    --brand-gold: #d4b475; /* L'or/ocre des éclaboussures */
    --text-dark: #111111; /* Le noir profond de la typographie */
    --text-light: #666666; /* Gris élégant pour les paragraphes */
    --card-bg: #ffffff;
    --card-border: #f5ecec;
}

/* --- Base & Typographie --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.faq-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* --- Header & Logo --- */
.header-section {
    text-align: center;
    margin-bottom: 60px;
}

.brand-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--brand-gold);
}

.back-btn i {
    margin-right: 8px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--text-light);
    font-size: 0.95em;
    font-weight: 300;
    margin: 0;
}

/* --- Catégories --- */
.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--brand-blush);
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.category-title i {
    margin-right: 15px;
    font-size: 0.9em;
    color: var(--brand-gold); /* Rappel des éclats dorés du logo */
}

/* --- Accordéon Premium --- */
.faq-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    border-color: var(--brand-blush);
    box-shadow: 0 8px 25px rgba(212, 180, 117, 0.08); /* Ombre très subtilement dorée */
    transform: translateY(-2px);
}

.faq-item summary {
    padding: 22px 26px;
    font-weight: 500;
    font-size: 0.95em;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f067'; /* Icône "Plus" FontAwesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand-gold);
    font-size: 1em;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '\f068'; /* Icône "Moins" quand ouvert */
    transform: rotate(90deg);
}

.faq-content {
    padding: 0 26px 26px 26px;
    font-size: 0.9em;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

.faq-content strong {
    font-weight: 500;
    color: var(--text-dark);
}

/* --- Footer --- */
.footer-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1em;
    color: var(--brand-gold);
}