/* Style pour forcer les sections à être en pleine largeur */
.fullwidth-section {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.fullwidth-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* Style spécifique pour la section CTA */
.cta-red {
    background-color: #00b7ce !important;
    color: white !important;
}

/* Style spécifique pour la section FAQ */
.faq-blue {
    background-color: #f5f9fa !important;
    color: #333 !important;
    padding: 20px 0 !important;
    margin-bottom: 0 !important;
}

.cta-red h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.cta-red p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: white;
}

.cta-red .btn {
    background-color: #FF7F00;
    color: white;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    min-width: 250px;
    letter-spacing: 1px;
}

.faq-blue .section-title {
    margin-bottom: 40px;
}

.faq-blue .section-title h2 {
    font-size: 36px;
    color: #00b7ce;
    margin-bottom: 15px;
}

.faq-blue .section-title p {
    font-size: 18px;
}

.faq-blue .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-blue .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-blue .faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #eee;
}

.faq-blue .faq-answer {
    padding: 20px;
    display: none;
}

.faq-blue .faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .fullwidth-content {
        padding: 60px 20px;
    }
    
    .cta-red h2 {
        font-size: 28px;
    }
    
    .cta-red p {
        font-size: 16px;
    }
    
    .faq-blue .section-title h2 {
        font-size: 28px;
    }
    
    .faq-blue .section-title p {
        font-size: 16px;
    }
    
    .faq-blue .faq-question {
        padding: 15px;
    }
    
    .faq-blue .faq-answer {
        padding: 15px;
    }
}
