:root {
    --color-brand: #059669;
    --color-cta: #FF6B35;
    --text-muted: #666;
    --border: #ddd;
}

.formation-hero {
    background-color: var(--color-brand);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.formation-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.formation-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.formation-hero p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.formation-hero .btn-cta {
    display: inline-block;
    background-color: var(--color-cta);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.formation-hero .btn-cta:hover {
    background-color: #e85d2a;
}

.formation-stats {
    background-color: #f8f8f8;
    padding: 60px 24px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.formation-articles {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content h3 a {
    color: #111;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: var(--color-brand);
}

.article-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.article-content time {
    font-size: 0.875rem;
    color: #999;
}

.no-articles {
    text-align: center;
    padding: 60px 24px;
    background: #f8f8f8;
    border-radius: 8px;
}

.no-articles p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.formation-domains {
    padding: 80px 24px;
    background-color: #f8f8f8;
}

.formation-domains h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #111;
}

.formation-domains > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.table-container {
    max-width: 1200px;
    margin: 0 auto 24px;
    overflow-x: auto;
}

.formation-domains table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.formation-domains th {
    background-color: var(--color-brand);
    color: #fff;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
}

.formation-domains td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: #111;
}

.formation-domains tr:last-child td {
    border-bottom: none;
}

.formation-domains tr:hover td {
    background-color: #f9f9f9;
}

.disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.formation-advice {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.formation-advice h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #111;
}

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

.advice-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.advice-card svg {
    color: var(--color-brand);
    margin-bottom: 20px;
}

.advice-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.advice-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .formation-hero {
        padding: 60px 20px;
    }
    
    .formation-hero h1 {
        font-size: 2rem;
    }
    
    .formation-hero p {
        font-size: 1rem;
    }
    
    .formation-stats,
    .formation-articles,
    .formation-domains,
    .formation-advice {
        padding: 60px 20px;
    }
    
    .section-header h2,
    .formation-domains h2,
    .formation-advice h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .advice-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-domains th,
    .formation-domains td {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .formation-hero h1 {
        font-size: 1.75rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}