/*
 * Feuille de style "Placement Garanti"
 * Thème : Sécurité et Confiance (Nuances de Bleu)
 */

/* Définition des variables pour une maintenance facile */
:root {
    --primary-blue: #004D99;         /* Bleu Corporatif Profond (Primaire) */
    --accent-blue: #1E90FF;          /* Bleu Vif (Accent/Survol) */
    --text-primary: #1E2749;         /* Bleu Marine Foncé (Titres) */
    --text-secondary: #5A677D;       /* Gris Bleu Moyen (Corps de texte) */
    --bg-light: #F7F9FC;             /* Fond très clair */
    --bg-white: #ffffff;
    --border-color: #e3e8f0;         /* Bordures subtiles */

    /* Couleurs des indicateurs (conservées pour la signification financière) */
    --positive-color: #28A745;       /* Vert pour le gain/avantage */
    --negative-color: #DC3545;       /* Rouge pour le risque/avertissement */
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Police, couleurs de base et espacements globaux */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7; 
    color: var(--text-primary); 
    background-color: var(--bg-light); 
    font-size: 1.15rem; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: var(--bg-white); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 24px;
    margin-right: 12px;
    color: var(--primary-blue); /* Couleur signature Bleu Primaire */
}

.logo-text {
    font-size: 20px;
    font-weight: 600; 
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary); 
    font-weight: 400;
    font-size: 1.15rem; 
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-blue); /* Survol en Bleu Primaire */
}

/* Boutons et CTA */
.btn-skool {
    background-color: var(--primary-blue); /* Fond Bleu */
    color: white;
    padding: 12px 20px;
    border-radius: 12px; 
    text-decoration: none;
    font-weight: 600; 
    font-size: 1.15rem; 
    transition: all 0.2s ease;
    border: 2px solid var(--primary-blue);
}

.btn-skool:hover {
    background-color: var(--accent-blue); /* Survol en Bleu Secondaire */
    border-color: var(--accent-blue);
    color: white; 
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none; 
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary); 
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background-color: var(--bg-light);
    border-top: 1px solid var(--accent-blue); /* Ligne de séparation en bleu accent */
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-items {
    list-style: none;
}

.mobile-menu-items li {
    margin-bottom: 16px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1.15rem;
}

.btn-skool.mobile {
    display: inline-block;
    margin-top: 8px;
}


/* Sections principales */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #D6E8FA 100%); /* Dégradé de fond doux bleu */
    padding: 80px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    color: white; /* Conserver le blanc sur le bleu vif */
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    border: 2px solid var(--primary-blue); /* Contour bleu primaire */
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: none;
}

/* Introduction et Définition */
.intro {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.definition-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.definition-text h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.definition-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.link-discrete {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--text-secondary);
    transition: all 0.2s ease;
}

.link-discrete:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.definition-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/* Catégories / Solutions Structurées */
.categories {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.categories h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.category-card {
    background-color: var(--bg-white);
    border: 1px solid #c9dff7; /* Bordure bleu très clair */
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue); /* Survol en Bleu Primaire */
}

/* MODIFICATION DU CSS POUR DES ICÔNES PLUS FINES */
    .category-icon {
        width: 32px;        /* On réduit de 48px à 32px */
        height: 32px;
        margin-bottom: 15px; /* On réduit légèrement l'espace sous l'icône */
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Alignement à gauche (plus chic) ou center selon vos goûts */
        color: #C5A059; 
    }
    
    .category-icon svg {
        width: 100%;
        height: 100%;
        stroke-width: 1.5; /* Épaisseur du trait : 1.5 est élégant. Mettez 1 pour très fin. */
    }
    
    /* Changement de couleur au survol */
    a.content-card:hover .category-icon {
        color: #002B5B; 
        transform: scale(1.1);
        transition: all 0.3s ease;
    }

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.category-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat {
    background-color: #D6E8FA; /* Fond bleu très clair pour la stat */
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.stat.highlight {
    background-color: var(--primary-blue);
    color: white;
}

/* Statistiques */
.stats {
    padding: 60px 0;
    background-color: var(--bg-light);
}
.stats h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
}
.stats-grid-new { /* Assure la compatibilité avec la structure d'accueil */
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #c9dff7;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.stat-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contenus Récents */
.recent-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.recent-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.content-items {
    display: grid;
    gap: 24px;
}

.content-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
}

.content-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-type {
    background-color: #D6E8FA; /* Bleu très clair */
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.content-emoji {
    font-size: 20px;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.content-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.content-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA Middle */
.cta-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
    text-align: center;
}

.btn-voir-contenus {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-blue);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.15em;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-voir-contenus:hover {
    background-color: var(--accent-blue);
    color: white;
}

/* Réassurance (A Propos) */
.apropos {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-align: center;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--primary-blue); /* icône en bleu */
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--text-primary); /* Fond Bleu Marine Foncé (Dark Navy) */
    color: #E0E5EB; /* Texte très clair */
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #E0E5EB; 
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue); /* Survol en Bleu Vif */
}

.footer-bottom {
    border-top: 1px solid #4A5668; /* Gris moyen/bleu pour la ligne */
    padding-top: 30px;
    text-align: center;
    font-size: 1rem;
}

/* Responsive Design (Adaptation des couleurs) */
@media (max-width: 768px) { 
    .navbar-menu { 
        display: none; 
    } 
    .mobile-menu-btn { 
        display: flex; 
    } 
    /* ... (Autres styles responsives inchangés) ... */
    .definition-content {
        grid-template-columns: 1fr;
        gap: 40px;
        grid-template-areas:
            "text"
            "image";
    }
}

@media (max-width: 480px) { 
    /* ... (Styles responsives inchangés) ... */
}

/* Accessibilité (Focus States) */
/* Utilise le bleu primaire pour l'outline de focus */
.btn-primary:focus, .btn-secondary:focus, .btn-skool:focus, .nav-link:focus, .link-discrete:focus, .btn-voir-contenus:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: -2px;
}
.apropos .intro-text p {
    /* Utilise l'espacement de base ou augmente-le légèrement */
    margin-bottom: 20px; /* Ajout d'un espacement standard */
}

/* Cible spécifique pour le dernier paragraphe avant le CTA si nécessaire
   (nécessite d'ajouter une classe ou un sélecteur plus complexe si le HTML ne peut pas être modifié) */

/* Si vous ne voulez pas modifier l'HTML, la solution la plus simple est d'assurer que le dernier P a une marge suffisante */

.apropos .intro-text a.btn-primary {
    /* Assure que le bouton est traité comme un bloc pour le positionnement
       s'il ne l'est pas déjà. Les .btn-primary sont généralement inline-block
       ou flex pour gérer le padding [6]. */
    margin-top: 30px; /* Alternative : ajouter de la marge au-dessus du bouton */
    display: inline-block;
}

/* ... [Gardez tout votre contenu CSS existant du début jusqu'à la fin] ... 
   ET AJOUTEZ CECI À LA FIN DU FICHIER :
*/

/* =========================================
   STYLES DES ARTICLES (Template Universel)
   ========================================= */

/* Conteneur principal de lecture */
.article-page {
    padding: 60px 0;
}

.article-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Typographie des articles */
.article-body h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.article-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 35px;
    margin-bottom: 15px;
}

.article-body p, 
.article-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.article-body ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.article-body ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Listes "Pro" (avec coche bleue) */
ul.pro-list {
    list-style: none !important;
    padding-left: 0;
}

ul.pro-list li {
    position: relative;
    padding-left: 30px;
    list-style-type: none !important;
}

ul.pro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================================
   COMPOSANTS (Tableaux & Alertes)
   ========================================= */

/* Encadrés d'information (Alertes) */
.info-box {
    padding: 25px;
    border-radius: 12px;
    margin: 35px 0;
    border-left: 5px solid var(--primary-blue); /* Par défaut */
    background-color: #F8F9FA;
}

.info-box h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Variantes d'alertes */
.info-box.warning {
    background-color: #FFF5F5;
    border-color: var(--negative-color);
}

.info-box.success {
    background-color: #F0FFF4;
    border-color: var(--positive-color); /* Nécessite var(--positive-color): #28A745; dans :root */
}

.info-box.critical {
    background-color: #fff8e1;
    border-color: #f59f00;
}

/* Tableaux Comparatifs */
.table-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: var(--bg-light);
}

/* Badges et Cellules spécifiques */
.badge-yield {
    background-color: #e6fffa;
    color: #047481;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

.advantage-cell {
    font-weight: 600;
    color: var(--primary-blue);
}

.risk-cell {
    font-weight: 600;
    color: var(--negative-color);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .article-wrapper {
        padding: 25px 20px;
        border-radius: 0; /* Pleine largeur sur mobile */
        box-shadow: none;
    }
    .article-body h2 {
        font-size: 1.5rem;
        margin-top: 30px;
    }
    .article-page {
        padding: 0; /* Gain de place sur mobile */
    }
}
/* =========================================
   VARIANTE LISTE : CROIX ROUGES
   ========================================= */
ul.pro-list.cross li::before {
    content: "✕" !important; /* Force le remplacement du check */
    color: var(--negative-color) !important; /* Force la couleur rouge */
    font-size: 1.2rem;
    font-weight: bold;
}

/* =========================================
   PAGE CONTENUS (Hub & Filtres)
   ========================================= */

/* Intro de la page */
.page-intro {
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.page-intro h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}
.page-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Barre de filtres */
.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 20px;
}
.filter-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Grille de contenus */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

/* Carte Article */
.card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f0f0f0;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tags {
    margin-bottom: 10px;
}
.tag {
    font-size: 0.75rem;
    background: #E3F2FD; /* Bleu très clair */
    color: var(--primary-blue);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 5px;
}

.card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--text-primary);
    line-height: 1.4;
}
.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    display: inline-block;
}
.card-link:hover {
    text-decoration: underline;
}

/* Utilitaires */
.hidden { display: none !important; }
.loading-msg { text-align: center; grid-column: 1/-1; padding: 40px; color: var(--text-secondary); }

/* =========================================
   BOUTON HEADER : CORRECTIF RESPONSIVE
   ========================================= */

/* 1. Par défaut (Ordinateur) : on cache le texte court "Bilan" */
.mobile-text {
    display: none !important;
}

/* 2. On s'assure que le texte long est bien visible */
.desktop-text {
    display: inline !important;
}

/* 3. SUR MOBILE (Écrans < 768px) : On inverse la logique */
@media (max-width: 768px) {
    
    /* On cache le texte long "Demander un Bilan" */
    .desktop-text {
        display: none !important;
    }
    
    /* On affiche le texte court "Bilan" */
    .mobile-text {
        display: inline !important;
    }

    /* Ajustement : réduire un peu les marges du bouton sur mobile pour gagner de la place */
    .navbar-actions .btn-skool {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}
/* --- TABLEAU RESPONSIVE (SCROLL AVEC COLONNE FIGÉE) --- */
    
    .table-scroll-container {
        overflow-x: auto; /* Permet le scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Scroll fluide sur iPhone */
        margin-top: 40px;
        box-shadow: 0 0 20px rgba(0,0,0,0.05); /* Ombre pour montrer que c'est un bloc */
        border-radius: 8px;
    }

    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Force le tableau à être large pour déclencher le scroll */
    }

    .comparison-table th, 
    .comparison-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #eee;
        background: white; /* Important pour que le texte ne se superpose pas */
        white-space: nowrap; /* Empêche le texte de passer à la ligne bêtement */
    }

    .comparison-table th {
        background-color: var(--primary-blue);
        color: white;
    }

    /* LA MAGIE : Colonne figée à gauche */
    .sticky-col {
        position: sticky;
        left: 0;
        background-color: white; /* Fond blanc pour cacher ce qui passe dessous */
        z-index: 2; /* Reste au dessus */
        border-right: 2px solid #f0f0f0; /* Petite séparation visuelle */
        font-weight: bold;
        color: #002B5B;
    }

    /* Le header de la colonne figée doit être bleu */
    th.sticky-col {
        background-color: var(--primary-blue);
        color: white;
        z-index: 3;
    }
    /* =========================================
   STYLES COMPLÉMENTAIRES DU FOOTER
   ========================================= */

/* Texte d'introduction sous le logo */
.footer-intro {
    font-size: 1rem;
    color: #F4F4F4;
    margin-bottom: 15px;
}

/* Bloc mentions légales (Orias) */
.footer-legal-block {
    font-size: 0.85rem;
    color: #ccc;
    border-top: 1px solid #555;
    padding-top: 10px;
    line-height: 1.5;
}

/* Lien doré pour l'Orias */
.footer-link-gold {
    color: #C5A059;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link-gold:hover {
    color: #e0c078;
    text-decoration: underline;
}

/* Boîte d'avertissement risques (Warning Box) */
.footer-warning-box {
    margin-top: 30px;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 8px;
    border: 1px solid #3d566e; /* Légère bordure pour le détail */
}

.footer-warning-box p {
    font-size: 0.9rem;
    color: #ffcccc; /* Rouge très clair pour l'avertissement */
    line-height: 1.5;
    margin: 0;
}