/* Style pour la section Contact */
.contact-section {
    padding: 40px;
    background-color: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Formulaire de contact */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: bold;
}

.contact-form input, .contact-form textarea {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover {
    background-color: #45a049;
}

/* Informations supplémentaires */
.contact-info {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Pied de page */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px;
    margin-top: 40px;
}
