/* --- contact.css : Spécifique à la page de contact --- */
.contact-container {
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}

.contact-container h1 {
    color: #e60012;
}

.contact-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #e60012;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #cc0010;
}