h2 {
    color: #267267; 
    margin-top: 0;
}

#contactForm ul {
    list-style: none;
    padding: 0;
    width: 100%;
    margin: 0;
}

#contactForm li {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

#contactForm label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

#contactForm textarea {
    width: 100%;
    height: 120px;
    padding: 0.8rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    resize: vertical;
    box-sizing: border-box;
    font-size: 1.1rem;
}

#contactForm input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1.1rem;
}

.section-contact-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    min-height: 80vh;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
}

.contact-left {
    flex: 1.5;
    display: flex;
    justify-content: flex-start;
}

.contact-left form {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.contact-right {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact-right h2 {
    margin-top: 0;
    color: #267267;
    text-align: left;
    width: 100%;
    margin-bottom: 1rem;
}

.lien-social {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.lien-social i {
    font-size: 2rem;
    color: #267267;
    transition: color 0.3s;
}

.lien-social:hover, .lien-social:hover i {
    color: #3EBCAA;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}