/* ---------- Contact Page Styles ---------- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Contact Section */
.contact-container {
    max-width: 1200px;
    margin: 0px auto 0;
    /* ↑ même distance top que main */
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 40px 20px;
}

/* Top line: Welcome text */
.contact-top {
    text-align: center;
}

.contact-top h2 {
    font-size: 2.5rem;
    color: #003C30;
    margin-bottom: 10px;
}

.contact-top p {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.5;
}

/* Bottom line: Info + Image */
.contact-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: #8b5e3c;
    margin-bottom: 15px;
    border-bottom: 2px solid #8b5e3c;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-info p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 10px;
    color: #003C30;
    min-width: 20px;
    text-align: center;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #8b5e3c;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-right: 12px;
    color: #003C30;
    font-size: 1.8rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #8b5e3c;
}

/* Image on right */
.contact-image {
    flex: 1 1 300px;
    text-align: center;
}

.contact-image img {
    max-width: 80%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .contact-image img {
        max-width: 50%;
        margin-top: 20px;
    }
}