/* Section Offres */
.offers-section {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 60px;
    margin-top: 120px;
    margin-bottom: 120px;
    text-align: center;
}

.offers-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #004ee3;
    margin-bottom: 40px;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.offer-card {
    flex: 1;
    min-width: 350px;
    border-radius: 35px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offer-particuliers {
    border: 5px solid #004ee3;
    background: #fff;
    color: #004ee3;
}

.offer-professionnel {
    background: #004ee3;
    color: white;
}

.offer-icon {
    font-size: 5rem;
    margin-bottom: 5px; /* espace minimal sous l’icône */
}

.offer-card h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 0;       /* supprime tout espace au-dessus */
    margin-bottom: 15px; /* réduit l’espace après le titre */
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.offer-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
}

.offer-particuliers ul li i {
    color: #004ee3;
    /* coche bleue */
    font-size: 2rem;
}

.offer-particuliers ul li {
    color: black;
    font-size: 1.5rem;
}

.offer-professionnel ul li i {
    color: white;
    /* coche blanche */
    font-size: 2rem;
}

.offer-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    background-color: #004ee3;
    color: white;
    border: 2px solid transparent;
    /* 👈 bordure invisible par défaut */
    transition: all 0.3s ease;
}

.offer-btn:hover {
    background-color: white;
    color: #004ee3;
    border: 2px solid #004ee3;
    /* 👈 devient bleue sans "sauter" */
}

.offer-professionnel .offer-btn {
    background: white;
    color: #004ee3;
    border: 2px solid transparent;
    /* pour éviter le saut */
    transition: all 0.3s ease;
}

.offer-professionnel .offer-btn:hover {
    background-color: #004ee3;
    /* fond bleu */
    color: white;
    /* texte blanc */
    border: 2px solid white;
    /* bordure visible */
}
