html, body {
    max-width: 100%;
    overflow-x: hidden;
}


/* 🌿 Styles généraux */
body {
    background: linear-gradient(to bottom, #E3F2E3, #f9f9f9);
    color: #333;
    font-family: Arial, sans-serif;
}


.main-container {
    width: 100%;
    max-width: 2000px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


/* 📩 Conteneur principal */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 🔵 Titres */
h1, h2 {
    color: #2C5E2E;
    text-align: center;
}

/* 📝 Texte d'introduction */
.intro-text {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* 📢 Message d'erreur ou de succès */
.alert {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}
.success {
    background-color: #e6ffe6;
    color: #2C5E2E;
}
.error {
    background-color: #ffe6e6;
    color: #D32F2F;
}

/* 📩 Formulaire */
form {
    display: flex;
    flex-direction: column;
}
label {
    font-weight: bold;
    margin-top: 10px;
}
input, textarea {
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 5px;
    width: 100%;
}

/* 🎨 Boutons */
.btn {
    background-color: #2C5E2E;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 5px;
    transition: 0.3s;
}
.btn:hover {
    background-color: #246024;
}

/* 📞 Section autres contacts */
.contact-options {
    background: #E3F2E3;
    padding: 15px;
    margin-top: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-options ul {
    list-style-type: none; /* Supprime les puces */
    padding: 0; /* Supprime l'espace intérieur */
}

.contact-options li {
    margin: 5px 0;
}

