/* Le conteneur global */
.seo-accordion-container {
    margin: 20px 0;
    padding: 10px;
    background-color: #f9f9f9; /* Fond gris très léger */
    border-radius: 8px;
}

/* Le bouton */
.seo-btn {
    background: none;
    border: none;
    color: #333; /* Couleur du texte */
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    outline: none;
}

.seo-btn:hover {
    color: #0056b3; /* Couleur au survol (bleu par ex) */
}

.seo-btn .icon {
    margin-right: 10px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

/* Classe ajoutée quand c'est ouvert (pour tourner la flèche) */
.seo-btn.active .icon {
    transform: rotate(180deg);
}

/* Le contenu caché par défaut */
.seo-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out; /* Animation fluide */
}

/* Le texte à l'intérieur */
.seo-inner-text {
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}