.offer-container {
    display: flex;
    align-items: stretch; /* Pour que les cartes aient la même hauteur */
    justify-content: center;
    gap: 2rem; /* Espace entre les cartes */
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 55rem) {
    .offer-container {
        flex-direction: column;
        align-items: center; /* Pour que les cartes aient la même hauteur */
        gap: 3rem;
    }
}

.card-offer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 3rem;
    border-radius: 1.2rem;
    width: 100%;
    max-width: 40rem;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.3); /* ou 0.08, 0.05 selon ton besoin */
}

.right-card {
    box-shadow: 3px 4px 4px 2px rgba(0, 0, 0, 0.2);}

.top-card {
    margin-bottom: 2rem;
    width: 100%;
}

.top-card h5 {
    margin-bottom: 0.5rem;
}


.middle-card {
    width: 100%;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.middle-card h4 {
    margin-bottom: 1.5rem;
}


.middle-card li {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 2.3rem;
    display: flex;
    align-items: flex-start;
}

.middle-card li i {
    position: absolute;
    left: 0;
    top: 0.2rem; /* Ajustez cette valeur selon vos besoins */
    width: 1.5rem; /* Largeur fixe pour l'icône */
    text-align: center;
}

/* Style pour les éléments non inclus */
.middle-card li.not-included {
    color: #4c4c4c; /* Gris */
}
/* X rouge pour les éléments non inclus */
.middle-card li.not-included {
    opacity: 0.7; /* Gris */
}

.end-card {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}


