/* CSS identique à la page mentions légales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Container pour centrer le contenu */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    flex: 1; /* Prend l'espace disponible à gauche */
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 2; /* Prend plus d'espace au centre */
    justify-content: center; /* Centre les éléments de navigation */
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #64b5f6;
}

/* Div vide pour équilibrer le layout */
nav::after {
    content: '';
    flex: 1; /* Prend l'espace disponible à droite pour équilibrer */
}

/* Version responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav::after {
        display: none;
    }
    
    .logo {
        font-size: 1.2rem;
        flex: none;
    }
    
    .nav-links {
        gap: 1rem;
        justify-content: center;
        flex: none;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
}


.main-content {
    background: white;
    margin: 2rem auto;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 5px;
}

.breadcrumb a {
    color: #2a5298;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

h1 {
    color: #2a5298;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #ff6b35;
}

h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #2a5298;
}

h3 {
    color: #2a5298;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.important-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.privacy-box {
    background: #e8f4fd;
    border: 1px solid #b3d9ff;
    border-left: 4px solid #2a5298;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.contact-info {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
    margin: 2rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

.data-table th {
    background: #2a5298;
    color: white;
}

.data-table tr:nth-child(even) {
    background: #f8f9fa;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer a {
    color: #64b5f6;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-content {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .data-table {
        font-size: 0.9rem;
    }
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* espace entre l’image et le texte */
}

.logo-img {
    height: 32px;
    /* ajuste selon la taille souhaitée */
    width: auto;
}