main{
    display: flex;
    flex-direction: row;
    min-width: 100%;
    gap: 80px;
    
}

.section-convention{
   
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
    gap: 20px;
    background-color: rgba(45, 19, 197, 0.2); /* Réglage de l'opacité ici */
}
.section-convention div h1{
    font-size: 52px;
    text-shadow: 9px 3px 0px rgba(163, 61, 61, 0.3);
    color: white;
}
.container-image-faq{
    display: flex;
    justify-content: space-between;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    background-color: #007bff; /* Couleur du bouton */
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Animation de transition de couleur au survol */
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    background-color: #0056b3; /* Nouvelle couleur au survol */
}

.responsive-image {
    max-width: 80%;
    height: auto;
    background: white;
    border-radius: 2%;
    opacity: 0.9;
    animation: fadeInUp 1s ease-in-out;
    padding: 40px;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.intro-image {
    width: 100%;
    border-radius: 10px; /* Ajoutez une bordure arrondie */
    margin-bottom: 20px; /* Espace entre l'image et le texte */
}
@media (max-width: 768px) {
    .section-convention{
        margin: 0px;
    }
    .section-convention div h1{
        font-size: 34px;
        text-align: center;
    }
    .cta-button {
        font-size: 15px;
        padding: 5px 5px;
    }
    .intro-image {
        min-width: 100%;
       min-height: 150px;
    }  
    .responsive-image {
        min-width: 95%;
        padding: 10px;
       
    } 
}