#offres {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    padding: 2em 1em;
}

#offres h2 {
    font-size: 2em;
    margin-bottom: 0.3em;
}

.intro-text {
    font-size: 1.2em;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
}

.offer-card {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(110,84,154,0.10), 0 1px 4px rgba(0,0,0,0.06);
    flex: 1 1 300px;
    max-width: 320px;
    padding: 2em 1.5em 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(110,84,154,0.16), 0 2px 8px rgba(0,0,0,0.08);
}

.offer-card h3 {
    margin-bottom: 0.3em;
}

.subtitle {
    font-weight: 600;
    margin-bottom: 1em;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px;
    margin-bottom: 1.5em;
}

.offer-card ul li {
    margin-bottom: 0.5em;
}

.tagline {
    font-style: italic;
    margin-bottom: 1.2em;
}

.offer-card img {
    display: block;
    margin: 10px auto;
    margin-top: auto;
    width: 100%;
    max-width: 220px;
    height: 160px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.offer-card .btnOffre {
    display: block;
    width: 100%;
    padding: 5px;
    font-size: 1.2em;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

@media (max-width: 900px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }
}
