body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

h1 {
    text-align: center;
    font-size: 36px;
    color: #007bff;
    margin-bottom: 50px;
}

.offers {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap; /* Assure que les offres restent sur la même ligne */
    overflow-x: auto; /* Permet de faire défiler horizontalement si nécessaire */
}

.offer-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.offer-card h2 {
    font-size: 28px;
    color: #ff6f61;
    margin-bottom: 20px;
}

.offer-card p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

.price {
    font-size: 32px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

ul {
    text-align: left;
    margin: 0;
    padding-left: 20px;
}

ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .offer-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .offers {
        flex-direction: column; /* Sur petits écrans, les offres passent en colonne */
    }
}