/* ===============================================
   COMPOSANT MORE QUESTIONS - FAQ
   =============================================== */
.faq-contact-section {
    padding: 60px 0;
    margin-top: 40px;
}

.faq-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 50rem;
    margin: 0 auto;
    background-color: #FFF0F3;
    border-radius: 16px;
    overflow: hidden;
}

.faq-contact-text {
    flex: 1;
    padding: 40px 0 40px 40px;
}

.faq-contact-image {
    flex-shrink: 0;
    width: 300px;
    height: auto;
    overflow: hidden;
}

/* Images desktop/mobile */
.faq-contact-image .mobile-image {
    display: none;
}

.faq-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: initial; /* Supprime object-fit: cover */
    object-position: center;
    border-radius: 0 16px 16px 0;
}

.faq-contact-text h2 {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
    margin-top: 0;
}

.faq-contact-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Bouton contact */
.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    background-color: #E31E24;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    background-color: #c01418;
    transform: translateY(-2px);
}

.contact-btn::after {
    content: "→";
    margin-left: 8px;
    font-size: 18px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .faq-contact-section {
        padding: 40px 16px;
        margin-top: 20px;
    }
    
    .faq-contact-content {
        flex-direction: column; /* Image en haut, texte en bas */
        gap: 0;
        text-align: center;
        max-width: 90%;
    }
    
    /* Masquer image desktop, afficher mobile */
    .faq-contact-image .desktop-image {
        display: none;
    }
    
    .faq-contact-image .mobile-image {
        display: block;
        border-radius: 16px 16px 0 0; /* Bordures arrondies en haut */
    }
    
    .faq-contact-image {
        width: 100%;
        height: 180px;
        order: 1; /* Image en premier */
    }
    
    .faq-contact-text {
        padding: 24px 20px;
        order: 2; /* Texte en second */
    }
    
    .faq-contact-text h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .faq-contact-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .contact-btn {
        padding: 16px 32px; /* Plus grand que les 12px 24px précédents */
        font-size: 16px; /* Plus grand que les 14px précédents */
        min-width: 200px; /* Largeur minimale */
        width: auto; /* Ou width: 100% pour toute la largeur */
        justify-content: center; /* Centre le contenu du bouton */
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .faq-contact-content {
        margin: 0 12px;
        max-width: calc(100% - 24px);
    }
    
    .faq-contact-image {
        height: 160px;
    }
    
    .faq-contact-text {
        padding: 20px 16px;
    }
    
    .faq-contact-text h2 {
        font-size: 18px;
    }
}