h1 {
    display: none;
}

body {
    background-image: url('../images/allover-plain.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: #FFEFE6;
}

/* ── Hero ── */
.faq-hero {
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    background-color: #FFD3EA;
}

.faq-main-title {
    font-family: 'GillSans-UltraBold', sans-serif;
    text-transform: uppercase;
    font-size: 2.2rem;
    color: #FF1D0F;
    text-align: center;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.faq-main-title::before,
.faq-main-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #FF1D0F;
}

.faq-intro__text {
    flex: 1;
    font-family: 'Americane', sans-serif;
    font-size: 1rem;
    color: #2A5842;
    line-height: 1.7;
    text-align: center;
    margin-top: 20px;
}

/* ── Accordion ── */
.faq-questions {
    padding: 40px 40px 60px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #FFD3EA;
    border-radius: 18px;
    overflow: visible;
    position: relative;
}

.faq-item__question {
    font-family: 'Americane-Regular', sans-serif;
    color: #2A5842;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 18px;
    text-align: left;
}

.faq-item__question span { flex: 1; }

.faq-item__icon {
    position: absolute;
    top: -18px;       /* ajuste selon la taille de ton étoile */
    right: -18px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s ease, transform .3s ease;
    pointer-events: none;
}

.faq-item__question:hover .faq-item__icon,
.faq-item.open .faq-item__icon {
    opacity: 1;
}

.faq-item__answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 400px;
    padding-bottom: 20px;
}

.faq-item__answer p {
    font-family: 'Americane-Regular', sans-serif;
    color: #2A5842;
    font-size: 16px;
    line-height: 1.7;
    border-top: 1px solid #FFA3C8;
    padding-top: 16px;
}

/* ── CTA ── */
.contact-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3rem 0 4rem;
}

.contact-btn {
    background-color: #FFA3C8;
    color: #2A5842;
    font-family: 'GillSans-UltraBold', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 7rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-btn:hover { 
    transform: translateY(-3px) scale(1.03);
    background-color: #FFA3C8;
    color: #FF1D0F;
}