/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps de la page */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Titre principal */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #002B5B;
    margin-bottom: 20px;
}

/* Conteneur principal */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Titres secondaires */
h2 {
    font-size: 1.75rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #C5A880;
    padding-bottom: 5px;
}

/* Paragraphes */
p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Liens */
a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Formulaire de contact */
form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

label {
    font-size: 1.1rem;
    color: #333;
}

input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"],
input[type="email"] {
    height: 40px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    padding: 10px 15px;
    font-size: 1.1rem;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #357ab7;
}

button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(72, 133, 255, 0.6);
}
