/* ============================= */
/* BODY */
/* ============================= */
body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
}

/* ============================= */
/* HEADER */
/* ============================= */
header h1 {
    text-align: center;
    color: #01448a;
    margin-bottom: 20px;
}

header h1 a {
    text-decoration: none;
    color: #01448a;
}

/* ============================= */
/* NAV */
/* ============================= */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-bottom: 40px;
}

nav a {
    text-decoration: none;
    color: #01448a;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* ============================= */
/* MAIN */
/* ============================= */
main {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ============================= */
/* TEXTES */
/* ============================= */
h2 {
    color: #01448a;
    font-size: 28px;
    margin-bottom: 20px;
}

h3 {
    color: #01448a;
    margin-top: 30px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ============================= */
/* LISTES */
/* ============================= */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* ============================= */
/* CONTACT */
/* ============================= */
.contact-item {
    margin-bottom: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-left: 4px solid #01448a;
}

.contact-item strong {
    color: #01448a;
}

/* ============================= */
/* FOOTER */
/* ============================= */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #555;
}
    