body {
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
    color: #222;
    background: #fff;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}
.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}
h1, h2 {
    color: #111;
    line-height: 1.3;
}
h1 {
    font-size: 2rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}
.legal-card {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin: 18px 0;
}
.muted {
    color: #666;
    font-size: 0.95rem;
}
a {
    color: #0b57d0;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.site-footer {
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    padding: 18px 12px;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.site-footer a {
    color: #0077cc;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 8px;
}
.hero {
    display: flex;
    align-items: center; /* 🔥 centrage vertical */
    gap: 20px;
    padding: 20px;
}

/* Image responsive */
.hero-img {
    width: 30vw;          /* taille relative à la fenêtre */
    max-width: 300px;     /* limite pour éviter trop grand */
    height: auto;         /* conserve les proportions */
    border-radius: 10px;  /* optionnel */
}

/* Titre */
.hero-title {
    font-size: 2rem;
    margin: 0;
    padding-top: 20px;
    color: white;
}

.hero-fond {
    border-radius: 15px 15px 15px 15px;
    -webkit-border-radius: 15px 15px 15px 15px;
    -moz-border-radius: 15px 15px 15px 15px;
    border: 1px solid #AF9AFF;
    background: #2563eb;
    /*border-color: #AF9AFF;*/
}
