/*
 * Feuille de style "Immobilier Passif"
 * Mise à jour pour une audience senior : lisibilité, élégance, professionnalisme.
 * Polices et couleurs basées sur la charte graphique spécifiée.
 */

/* 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; /* Interlignage amélioré pour la lisibilité */
    color: #1C1C1C;
    background-color: #F4F4F4;
    font-size: 1.15rem; /* Taille de base pour le corps de texte */
}

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

/* Header */
.header {
    background-color: #F4F4F4; /* Fond légèrement grisé */
    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: #1C1C1C;
}

.logo-icon {
    font-size: 24px;
    margin-right: 12px;
    color: #AF813E; /* Couleur signature */
}

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

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

.nav-link {
    text-decoration: none;
    color: #666666; /* Gris moyen */
    font-weight: 400; /* Regular */
    font-size: 1.15rem; /* Taille corps de texte */
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #AF813E; /* Survol en doré mat */
}

/* Boutons et CTA */
.btn-skool {
    background-color: #AF813E; /* Fond doré */
    color: white;
    padding: 12px 20px;
    border-radius: 12px; /* Bords doux */
    text-decoration: none;
    font-weight: 600; /* Semi-Bold */
    font-size: 1.15rem; /* Taille corps de texte */
    transition: all 0.2s ease;
    border: 2px solid #AF813E;
}

.btn-skool:hover {
    background-color: #E1B578; /* Survol en sable clair */
    border-color: #E1B578;
    color: #1C1C1C;
    transform: none; /* Pas de transformation pour plus de stabilité */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile menu (inchangé dans la logique) */
.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: #1C1C1C; /* Gris anthracite */
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    background-color: #F4F4F4;
    border-top: 1px solid #E1B578; /* Ligne de séparation en or doux */
    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: #666666;
    font-weight: 400;
    font-size: 1.15rem;
}

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



/* Sections principales */
.hero {
    background: linear-gradient(135deg, #F4F4F4 0%, #E1B578 100%); /* Dégradé de fond avec or doux */
    padding: 80px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.3rem; /* H1 selon charte */
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #666666;
    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: #AF813E;
    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: #E1B578;
    color: #1C1C1C;
    transform: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #1C1C1C;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    border: 2px solid #AF813E; /* Contour doré */
}

.btn-secondary:hover {
    background-color: #AF813E;
    color: white;
    transform: none;
}

/* Introduction */
.intro {
    padding: 60px 0; /* Espacement selon charte */
    background-color: #F4F4F4;
}

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

.intro-text {
    font-size: 1.15rem;
    line-height: 1.7;
}

.intro-text p {
    margin-bottom: 24px;
}



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

/* Définition */
.definition {
    padding: 60px 0;
    background-color: #F4F4F4;
}

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

.definition-text h2 {
    font-size: 1.7rem; /* H2 selon charte */
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

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

.link-discrete:hover {
    color: #AF813E;
    border-color: #AF813E;
}

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

/* Catégories */
.categories {
    padding: 60px 0;
    background-color: #F4F4F4;
}

.categories h2 {
    font-size: 1.7rem; /* H2 selon charte */
    font-weight: 600;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 1.15rem;
    color: #666666;
    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: #FFFFFF;
    border: 1px solid #E1B578; /* Bordure or doux */
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: none; /* Pas de transformation */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #AF813E; /* Survol en doré mat */
}

.category-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: #AF813E;
}

.category-card h3 {
    font-size: 1.3rem; /* H3 selon charte */
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 12px;
}

.category-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.stat {
    background-color: #E1B578; /* Or doux */
    color: #1C1C1C;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.stat.highlight {
    background-color: #AF813E;
    color: white;
}

/* Statistics */
.stats {
    padding: 60px 0;
    background-color: #F4F4F4;
}

.stats h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 60px;
}

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

.stat-card {
    background-color: #FFFFFF;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E1B578;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 700; /* Bold pour les chiffres clés */
    color: #AF813E;
    margin-bottom: 16px;
}

.stat-card p {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.6;
}

/* Target section */
.target {
    padding: 40px 0; /* Espacement réduit */
    background-color: #F4F4F4;
    text-align: center;
}

.target p {
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Recent content */
.recent-content {
    padding: 60px 0;
    background-color: #F4F4F4;
}

.recent-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 40px;
}

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

.content-item {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E1B578;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
}

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

.content-type {
    background-color: #E1B578;
    color: #1C1C1C;
    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: #AF813E;
}

.content-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 8px;
}

.content-text p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}

/* Community */
.community {
    padding: 60px 0;
    background-color: #F4F4F4;
}

.community h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 40px;
}

.community-stats {
    display: grid;
    gap: 24px;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E1B578;
}

.social-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.social-icon.youtube {
    background-color: #F8D8D8; /* Rouge doux patrimonial léger */
    color: #9E3B3B;
}

.social-icon.linkedin {
    background-color: #DDE2E8; /* Gris clair */
    color: #1C1C1C;
}

.community-text {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.5;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background-color: #F4F4F4;
}

.faq h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 60px;
    text-align: center;
}

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

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E1B578;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #AF813E;
}

.faq-item.active {
    border-color: #AF813E;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1C1C1C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #AF813E;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: #AF813E; /* icône en doré */
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    color: #AF813E;
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #1C1C1C; /* Fond anthracite */
    color: #F4F4F4;
    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: #F4F4F4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #AF813E;
}

.footer-bottom {
    border-top: 1px solid #666666;
    padding-top: 30px;
    text-align: center;
    font-size: 1rem;
}

/* Rendre le texte du footer plus léger */
.footer-section h3 {
    /* Le titre reste en gras pour la structure */
    font-weight: 600; 
}
.footer-section ul li a,
.footer-bottom {
    font-weight: 400; /* Poids normal pour les liens et le texte */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
@media (max-width: 768px) {
    /* ... (Autres règles existantes pour le mobile) ... */

    /* NOUVELLE RÈGLE : Masquer le CTA de la barre de navigation PC */
    .navbar-actions .btn-skool {
        display: none; 
    }
}
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-content,
    .definition-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .definition-content {
        grid-template-areas: 
            "text"
            "image";
    }
    
    .definition-text {
        grid-area: text;
    }
    
    .definition-image {
        grid-area: image;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-card {
        padding: 24px;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .content-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .content-item .content-type {
        align-self: flex-start;
    }
    
    .faq-question {
        font-size: 1.15rem;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .intro,
    .definition,
    .categories,
    .stats,
    .recent-content,
    .community,
    .faq {
        padding: 40px 0;
    }
    
    .categories h2,
    .stats h2,
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .definition-text h2,
    .recent-content h2,
    .community h2 {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .content-item {
        padding: 20px;
    }
    
    .community-item {
        padding: 20px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 1rem;
    }
}

/* Animations et transitions (inchangé, sauf la couleur de fond) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.intro-content,
.definition-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page des catégories */
.page-header {
    background: linear-gradient(135deg, #F4F4F4 0%, #E1B578 100%);
    padding: 60px 0 80px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Tableau comparatif */
.table-section {
    margin-bottom: 60px;
}

.table-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #E1B578;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.table-container thead {
    background-color: #F4F4F4;
}

.table-container th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    color: #1C1C1C;
    border-bottom: 2px solid #E1B578;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-container tbody tr {
    border-bottom: 1px solid #E1E1E1;
    transition: all 0.2s ease;
}

.table-container tbody tr:hover {
    background-color: #F8F8F8;
    transform: none;
}

.table-container td {
    padding: 20px 16px;
    vertical-align: top;
    line-height: 1.5;
}

.product-name {
    font-weight: 600;
    color: #AF813E;
    text-decoration: none;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 4px;
}

.product-name:hover {
    color: #E1B578;
    text-decoration: underline;
}

.rendement {
    font-weight: 700;
    color: #6E8A5C; /* Vert olive pour la stabilité */
    font-size: 1.15rem;
}

.liquidite {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.liquidite.elevee {
    background-color: #E6F3E3;
    color: #6E8A5C;
}

.liquidite.moyenne {
    background-color: #FBF0D8;
    color: #AF813E;
}

.liquidite.faible {
    background-color: #F8E6E6;
    color: #9E3B3B;
}

.profil-tag {
    background-color: #DDE2E8;
    color: #1C1C1C;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
}

/* Cartes détaillées */
.details-section {
    display: grid;
    gap: 32px;
    margin-bottom: 60px;
}

.detail-card {
    background-color: #FFFFFF;
    border: 1px solid #E1B578;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #AF813E;
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 8px;
}

.detail-card .subtitle {
    font-size: 1rem;
    color: #666666;
    font-style: italic;
    margin-bottom: 20px;
}

.detail-card > p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlights {
    margin: 24px 0;
    padding: 20px;
    background-color: #E1B578;
    border-radius: 12px;
    border-left: 4px solid #AF813E;
}

.highlight-item {
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: #1C1C1C;
    line-height: 1.6;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item strong {
    color: #1C1C1C;
    font-weight: 700;
}

.detail-card > p:last-of-type {
    font-size: 1.15rem;
    color: #1C1C1C;
    font-weight: 600;
    margin: 20px 0;
}

.learn-more {
    color: #AF813E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.learn-more:hover {
    color: #E1B578;
    transform: none;
}

/* Résumé en clés */
.key-summary {
    background-color: #FFFFFF;
    border: 1px solid #E1B578;
    border-radius: 12px;
    padding: 40px 32px;
    margin-bottom: 60px;
}

.key-summary h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1C1C1C;
    text-align: center;
    margin-bottom: 32px;
}

.key-items {
    display: grid;
    gap: 16px;
}

.key-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: #F4F4F4;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.key-item:hover {
    background-color: #DDE2E8;
    transform: none;
}

.key-item .emoji {
    font-size: 20px;
    flex-shrink: 0;
    color: #AF813E;
}

.key-item span:last-child {
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}

.key-item strong {
    color: #1C1C1C;
    font-weight: 600;
}

/* Section CTA */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F4F4F4 0%, #E1B578 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.cta-section h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 32px;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    margin: 0 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive pour la page catégories */
@media (max-width: 1024px) {
    .table-container {
        overflow-x: auto;
    }
    
    .table-container table {
        min-width: 1200px;
    }
    
    .details-section {
        gap: 24px;
    }
    
    .detail-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .table-container table {
        min-width: 1000px;
        font-size: 13px;
    }
    
    .table-container th,
    .table-container td {
        padding: 16px 12px;
    }
    
    .detail-card {
        padding: 20px;
    }
    
    .detail-card h3 {
        font-size: 1.2rem;
    }
    
    .highlights {
        padding: 16px;
    }
    
    .key-summary {
        padding: 24px 20px;
    }
    
    .key-summary h3 {
        font-size: 1.5rem;
    }
    
    .key-item {
        padding: 12px 16px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        display: block;
        margin: 0 0 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .table-container table {
        font-size: 1rem;
    }
    
    .table-container th,
    .table-container td {
        padding: 12px 8px;
    }
    
    .detail-card h3 {
        font-size: 1rem;
    }
    
    .key-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
    
    .key-item .emoji {
        align-self: center;
    }
}

/* Focus states pour l'accessibilité */
.btn-primary:focus,
.btn-secondary:focus,
.btn-skool:focus,
.nav-link:focus,
.link-discrete:focus,
.learn-more:focus,
.product-name:focus {
    outline: 2px solid #AF813E;
    outline-offset: 2px;
}

.faq-question:focus {
    outline: 2px solid #AF813E;
    outline-offset: -2px;
}

.table-container tbody tr:focus-within {
    background-color: #FBF0D8;
    outline: 2px solid #AF813E;
    outline-offset: -2px;
}

/* CSS existant pour le conteneur CTA [3] */
.cta-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-middle {
        padding: 30px 0;
    }
}

/* Styles pour le bouton "Voir tous les contenus" (sobre et visible) */
.btn-voir-contenus {
    display: inline-block;
    padding: 14px 30px;
    background-color: #AF813E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.15em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-voir-contenus:hover {
    background-color: #E1B578;
    color: #1C1C1C;
    transform: none; /* Pas de transformation */
}

/* Focus state pour l'accessibilité, inspiré des styles existants [3] */
.btn-voir-contenus:focus {
    outline: 2px solid #AF813E;
    outline-offset: 2px;
}
