
.OffreWatsapp .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 36px;
    color: #25D366; /* Couleur verte de WhatsApp */
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s ease-out forwards;
    text-align: center;
}

p {
    text-align: center;
}
.offers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.offer-card:nth-child(1) {
    animation-delay: 0.3s;
}

.offer-card:nth-child(2) {
    animation-delay: 0.5s;
}

.offer-card:nth-child(3) {
    animation-delay: 0.7s;
}

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

.offer-card h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.offer-card .price {
    font-size: 28px;
    color: #25D366;
    font-weight: bold;
    margin-bottom: 20px;
}

.offer-card ul {
    text-align: left;
    margin: 0;
    padding: 0 0 0 20px;
    margin-bottom: 20px;
}

.offer-card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.cta-button {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1s ease-out forwards;
    animation-delay: 0.9s;
}

.cta-button:hover {
    background-color: #1EBB5C;
}

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

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
