.contact-form {
    max-width: 700px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Instrument Sans', Helvetica;
    font-weight: 500;
    font-size: 18px;
    color: #1e1e1e;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    font-family: 'Instrument Sans', Helvetica;
    font-size: 18px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #353738;
}

.form-group textarea {
    resize: vertical;
}

.contact-link {
    color: #353738;
    text-decoration: underline;
    font-weight: 500;
}

.contact-link:hover {
    opacity: 0.8;
}

/* ============ FEATURED IMAGES REDUITES POUR PAGE CONTACT ============ */

.featured-image-container-forms {
    position: relative;
    width: 100%;
    z-index: 10;
}

.featured-image-1-forms {
    width: 100%;
    height: 500px; /* Hauteur réduite (vs 700px classique) */
    background-size: cover;
    background-position: 50% 50%;
}


/* Responsivité pour les images réduites */
@media (min-width: 769px) and (max-width: 1024px) {
    .featured-image-1-forms{
        height: 400px; /* Encore plus petit sur tablette */
    }
}

@media (max-width: 768px) {
    .featured-image-1-forms {
        height: 300px; /* Compact sur mobile */
    }
}