.contact-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #0a3d62;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: #f4f9ff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 22px;
    color: #0a3d62;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    margin: 8px 0;
    color: #444;
}


.contact-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 22px;
    color: #0a3d62;
    margin-bottom: 20px;
}

/* Champs du formulaire */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d0d8e1;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0a3d62;
    box-shadow: 0 0 5px rgba(10, 61, 98, 0.3);
}

/* Bouton */
.btn-submit {
    background: #0a3d62;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #07456e;
}

/* Responsive */
@media screen and (max-width: 850px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
