/* Général */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #333;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    color: #005074;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    line-height: 1.6em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Cartes */
.cartes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carte {
    background-color: #e6f2f8;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.carte:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    background-color: #d4ecf7;
}

.carte a {
    text-decoration: none;
    color: #003c5a;
    display: block;
}

.carte h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #005074;
}

.carte p {
    font-size: 1em;
    color: #444;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #005074;
    color: white;
    margin-top: 50px;
}
