:root {
  --h-contact-section-max-width: 1360px;
}

.home_contact {
    display: flex;
    width: 100%;
    justify-content: center;
    background: #F2F7E7;
}

.home_contact_sz {
    display: flex;
    width: calc(100% - 20px);
    max-width: var(--h-contact-section-max-width);
    padding: 100px 0 30px;
    gap: 60px; /* Ajout d'un espacement contrôlé entre les colonnes */
}

.home_contact_form {
    display: flex;
    flex-direction: column;
    width: 55%;
    flex: 0 0 55%;
}

.home_contact_title {
    color: #004D33;
    font-family: 'Industry_Black', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.1;
    text-align: left;
    position: relative;
    padding-top: 20px;
    margin-bottom: 20px;
}

.home_contact_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #A1C854;
    border-radius: 2px;
}

.home_contact_img {
    display: flex;
    flex-direction: column;
    width: 45%;
    flex: 0 0 45%;
}

.home_contact_img img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Améliore le rendu des images */
    border-radius: 12px; /* Ajout d'une cohérence visuelle */
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .home_contact_sz {
        gap: 40px;
        padding: 80px 0 30px;
    }

    .home_contact_title {
        font-size: 32px;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .home_contact_sz {
        flex-direction: column;
        gap: 30px;
        padding: 60px 0 30px;
    }

    .home_contact_form {
        width: 100%;
        /*! flex: 0 0 100%; */
    }

    .home_contact_img {
        display: none;
    }

    .home_contact_title {
        font-size: 28px;
        text-align: center;
        padding-top: 25px;
    }

    .home_contact_title::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Small Mobile */
@media (max-width: 480px) {
    .home_contact_sz {
        padding: 40px 0 20px;
        gap: 20px;
    }

    .home_contact_title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .home_contact_title::before {
        width: 40px;
        height: 3px;
    }
}
