.faq-section {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 60px;
  font-family: Inter, sans-serif;
  background: #f3f5f5;
}

.faq-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
}

.faq-title {
    margin-bottom: 20px;
    color: #1B1F1F;
    /* Police */
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
}

.faq-subtitle {
    margin-bottom: 30px;
    line-height: 1.5;
    color: #1B1F1F;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* .faq-item {
    margin-bottom: 20px;
} */

.faq-question {
    margin-bottom: 10px;
    color: #1B1F1F;
    /* Police */
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.faq-answer {
    line-height: 1.5;
    color: #1B1F1F;
    /* Police */
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Styles pour le bloc "Besoin d'un coup de main ?" */
.faq-help-container {
    background-color: #E6F3FF; /* Couleur de fond bleue claire */
    border-radius: 12px;
    padding: 30px;
    margin: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-help-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
    height: 200px;
}

.faq-help-text {
    /* flex: 1; */
    margin: auto;
}

.faq-help-label {
    background-color: none;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #004B64;
    color: #004B64;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.faq-help-title {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
    color: #004B64;
    /* Police */
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.faq-help-subtitle {
    line-height: 1.5;
    color: #1B1F1F;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.faq-help-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto 20px;
}

.faq-help-button {
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    width: 220px;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.faq-help-button-primary {
    background-color: #004B64; /* Bleu foncé */
    color: white;
}

.faq-help-button-secondary {
    background-color: white;
    color: #004B64;
    border: 2px solid #004B64;
}

/* Adaptation pour les petits écrans */
@media (max-width: 1050px) {
    .faq-help-title {
        font-size: 28px;
    }

    .faq-help-subtitle {
        font-size: 18px;
    }

    .faq-help-container {
        display: flex;
        padding: 20px 10px;
    }

    .faq-help-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .faq-help-buttons {
        flex-direction: row;
        justify-content: center;
        margin-top: -20px;
    }
}

/* Adaptation générale pour les écrans très petits */
@media (max-width: 750px) {
    .faq-section {
        padding: 40px 0px;
        height: auto; /* Permet à la section de s’adapter au contenu */
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr; /* Une seule colonne pour mobile */
        gap: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Bloc "Besoin d’un coup de main ?" */
    .faq-help-container {
        padding: 20px;
    }

    .faq-help-content {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .faq-help-title {
        font-size: 22px;
    }

    .faq-help-subtitle {
        font-size: 14px;
    }

    .faq-help-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 0;
    }

    .faq-help-button {
        width: 100%; /* boutons plus larges et adaptés */
        font-size: 14px;
        padding: 10px 20px;
    }
}
