.contact-section {
    background-color: #F5F2E9; /* Beige très clair en fond */
    padding: 80px 10%;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-header h2 {
    color: #2D1F1E;
    font-size: 2rem;
    font-weight: 800;
}

.contact-header h2 span {
    border-bottom: 4px solid #2D1F1E;
    padding-bottom: 5px;
}

.contact-logo {
    height: 60px;
}

.contact-container {
    display: flex;
    gap: 50px;
}

/* Colonne Infos (Gauche) */
.contact-info {
    flex: 1;
    background-color: #F0F0F0; /* Gris très léger comme sur la photo */
    padding: 40px;
    border-left: 6px solid #2D1F1E; /* La barre verticale marron */
}

.info-box .label {
    color: #999;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-box .value {
    color: #2D1F1E;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.info-box .email {
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Colonne Formulaire (Droite) */
.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    padding: 15px;
    border: 1px solid #CCC;
    background: white;
    font-family: inherit;
}

.btn-send {
    background-color: #2D1F1E;
    color: white;
    border: none;
    padding: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-send:hover {
    background-color: #E2D9C1;
    color: #2D1F1E;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}