/* Fond global sombre + couleur */
body {
    background-color: #111;
    color: white;
}

/* Titre section plans */
.section-plans {
    padding: 50px 0;
}

/* Affichage en hauteur uniforme */
.section-plans .row {
    display: flex;
    align-items: stretch;
}

.section-plans .col-lg-4 {
    display: flex;
    flex-direction: column;
}

/* Cartes */
.zx-plans {
    background-color: #1c1c1c;
    border-radius: 16px;
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

/* Corps de la carte */
.zx-body {
    flex-grow: 1;
}

/* Contenu : titre + éléments */
.zx-seo p {
    margin: 10px 0;
    line-height: 1.6;
    word-break: break-word;
}

/* Titre H2 */
.section-plans h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

/* Titre H4 dans les cartes */
.zx-plans h4 {
    text-align: center;
    font-weight: bold;
}

/* Bouton d'action en bas */
.close-plans {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.close-plans a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

/* Couleur violet utilisée pour les titres et puces */
.text-color {
    color: #a78bfa;
}