

/* Bannière orange FAQ */
.faq-banner {
    background-image: url('../images/back.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 70px;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 0;
}
.faq-banner h1 {
    font-size: 64px;
    font-family: 'JacquesProBold', sans-serif;
    font-weight: bold;
    margin: 0;
    width: 65%;
}

/* Section FAQ accordéon */
.faq-section {
    padding: 90px 0 120px 0;
    display: flex;
    justify-content: center;
}
.faq-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #F3F4F4;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(221,102,0,0.07);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1B0D00;
    text-align: left;
    padding: 20px 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq-question:hover {
    background: none;
}
.arrow {
    font-size: 1.2em;
    transition: transform 0.3s;
}
.faq-item.active .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    background: #F3F4F4;
    display: none;
    padding: 0 32px 20px 32px;
    color: #333A42;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Bannière apps */
.faq-apps-banner-wrapper {
    background: none;
    position: relative;
    overflow: visible;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.faq-apps-banner {
    position: relative;
    overflow: visible;
    background: linear-gradient(90deg, #dd6600 60%, #f7a14b 100%);
    border-radius: 32px;
    margin: 48px auto 70px auto;
    max-width: 1100px;
    padding: 0px 55px 80px 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    flex-direction: column;
}

.apps-banner__img {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    transform: none;
    width: 700px;
    /* max-width: none; */
    height: auto;
    z-index: 1;
    pointer-events: none;
    order: 2;
    margin-top: 30px;
}

.apps-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 48px;
    order: 1;
}
.apps-text h2 {
    color: #fff;
    font-size: 50px;
    font-family: 'JacquesProBold', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
}
.apps-links {
    display: flex;
    gap: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-banner h1 {
        font-size: 2.1rem;
    }
    .faq-apps-banner {
        flex-direction: column;
        padding: 24px 12px;
        border-radius: 18px;
    }
    .apps-content {
        flex-direction: column;
        gap: 24px;
    }
    .apps-img img {
        max-width: 220px;
    }
}
@media (max-width: 600px) {
    .faq-section {
        padding: 24px 0 16px 0;
    }
    .faq-container {
        max-width: 98vw;
        padding: 0 2vw;
    }
    .faq-banner {
        padding: 32px 0 18px 0;
    }
    .faq-banner h1 {
        font-size: 1.3rem;
    }
    .faq-apps-banner {
        padding: 12px 2vw;
    }
    .apps-text h2 {
        font-size: 1.2rem;
    }
}

/* ===== RESPONSIVE - PAGE FAQ ===== */

/* Desktop Large */
@media (min-width: 1200px) {
    /* Styles pour écrans très larges */
}

/* Desktop */
@media (max-width: 1199px) and (min-width: 992px) {
    /* Styles pour écrans desktop */
}

/* Tablet Large */
@media (max-width: 991px) and (min-width: 768px) {
    /* Styles pour tablettes larges */
}

/* Tablet */
@media (max-width: 991px) {
    .faq-banner {
        height: 280px;
        margin-top: 100px;
    }
    
    .faq-banner h1 {
        font-size: 48px;
        width: 75%;
    }
    
    .faq-section {
        padding: 70px 0 100px 0;
    }
    
    .faq-container {
        max-width: 85%;
        gap: 16px;
    }
    
    .faq-question {
        font-size: 18px;
        padding: 18px 28px;
    }
    
    .faq-answer {
        padding: 0 28px 18px 28px;
        font-size: 15px;
    }
    
    .faq-apps-banner {
        margin: 40px auto 60px auto;
        padding: 40px 35px 80px 35px;
        min-height: 250px;
    }
    
    .apps-banner__img {
        width: 500px;
        right: auto;
        margin-top: 25px;
    }
    
    .apps-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .apps-links {
        gap: 15px;
    }
    
    .apps-links img {
        width: 110px;
    }
}

/* Mobile Large */
@media (max-width: 767px) and (min-width: 576px) {
    .faq-banner {
        height: 250px;
        margin-top: 100px;
    }
    
    .faq-banner h1 {
        font-size: 36px;
        width: 80%;
    }
    
    .faq-section {
        padding: 60px 0 80px 0;
    }
    
    .faq-container {
        max-width: 90%;
        gap: 15px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .faq-answer {
        padding: 0 24px 16px 24px;
        font-size: 14px;
    }
    
    .faq-apps-banner {
        margin: 30px 14px 50px 14px;
        padding: 30px 25px 60px 25px;
        min-height: 220px;
    }
    
    .apps-banner__img {
        width: 400px;
        right: auto;
        margin-top: 20px;
    }
    
    .apps-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .apps-links {
        gap: 12px;
    }
    
    .apps-links img {
        width: 100px;
    }
}

/* Mobile Medium */
@media (max-width: 575px) {
    .faq-banner {
        height: 200px;
        margin-top: 100px;
    }
    
    .faq-banner h1 {
        font-size: 28px;
        width: 85%;
    }
    
    .faq-section {
        padding: 40px 0 60px 0;
    }
    
    .faq-container {
        max-width: 95%;
        gap: 12px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 14px 20px;
        font-size: 13px;
    }
    
    .faq-apps-banner {
        margin: 25px 14px 40px 14px;
        padding: 25px 20px 50px 20px;
        min-height: 180px;
    }
    
    .apps-banner__img {
        width: 300px;
        right: auto;
        margin-top: 15px;
    }
    
    .apps-text h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .apps-links {
        gap: 10px;
    }
    
    .apps-links img {
        width: 80px;
    }
}

/* Mobile Small */
@media (max-width: 374px) {
    .faq-banner {
        height: 180px;
        margin-top: 100px;
    }
    
    .faq-banner h1 {
        font-size: 24px;
        width: 90%;
    }
    
    .faq-section {
        padding: 30px 0 50px 0;
    }
    
    .faq-container {
        max-width: 98%;
        gap: 10px;
    }
    
    .faq-question {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .faq-answer {
        padding: 0 16px 12px 16px;
        font-size: 12px;
    }
    
    .faq-apps-banner {
        margin: 20px 14px 30px 14px;
        padding: 20px 15px 40px 15px;
        min-height: 160px;
    }
    
    .apps-banner__img {
        width: 250px;
        right: auto;
        margin-top: 12px;
    }
    
    .apps-text h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .apps-links {
        gap: 8px;
    }
    
    .apps-links img {
        width: 70px;
    }
}
