/* Boîte centrale avec taille réduite */
.marketing2 {
    background-color: #b41ec2;
    color: #fff;
    padding: 20px 15px; /* Réduction du padding */
    border-radius: 10px;
    max-width: 600px; /* Taille réduite de la boîte */
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Centrer horizontalement */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Animation du titre */
.marketing2 h1 {
    font-size: 2rem; /* Taille du titre réduite */
    margin-bottom: 15px;
    font-weight: bold;
    animation: slideIn 1s ease-out forwards;
}

/* Style du texte */
.marketing2 p {
    font-size: 1rem; /* Taille du texte réduite */
    line-height: 1.6;
    margin-bottom: 15px; /* Réduction de la marge */
    max-width: 500px; /* Limitation de la largeur du texte */
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Animation du titre */
@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .marketing2 h1 {
        font-size: 2rem;
    }

    .marketing2 p {
        font-size: 0.9rem;
    }

    .marketing2 .btn {
        font-size: 1rem;
    }
}
