.hero-education {
        background: linear-gradient(135deg, #00A878, #008060);
        color: white;
        padding: 100px 0;
    }

    .hero-education-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-badge-edu {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .hero-title-edu {
        font-family: 'Sora', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-description-edu {
        font-size: 1.25rem;
        opacity: 0.95;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .hero-stats-edu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-edu {
        text-align: center;
    }

    .stat-number-edu {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .stat-label-edu {
        font-size: 0.95rem;
        opacity: 0.9;
    }

    .resources-section {
        padding: 80px 0;
        background: #F8FAFC;
    }

    .resources-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .resource-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
    }

    .resource-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    .resource-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 20px;
    }

    .resource-card h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.3rem;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .resource-card p {
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .btn-resource {
        display: inline-block;
        background: linear-gradient(135deg, #3E92CC, #0A2463);
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.2s;
    }

    .btn-resource:hover {
        transform: translateX(5px);
    }

    .concept-jour-section {
        padding: 80px 0;
    }

    .section-title {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0A2463;
        text-align: center;
        margin-bottom: 50px;
    }

    .concept-card-large {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .concept-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .concept-badge {
        background: #3E92CC;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .concept-date {
        color: #94A3B8;
        font-size: 0.9rem;
    }

    .concept-card-large h3 {
        font-family: 'Sora', sans-serif;
        font-size: 2rem;
        color: #0A2463;
        margin-bottom: 25px;
    }

    .concept-definition {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #1E293B;
        margin-bottom: 30px;
        padding: 25px;
        background: #F8FAFC;
        border-radius: 12px;
        border-left: 4px solid #3E92CC;
    }

    .concept-example {
        margin-bottom: 30px;
    }

    .concept-example h4 {
        font-size: 1.1rem;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .concept-example p {
        color: #64748B;
        line-height: 1.7;
    }

    .concept-related h4 {
        font-size: 1.1rem;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .related-tags {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .related-tags a {
        background: #E2E8F0;
        color: #0A2463;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.2s;
    }

    .related-tags a:hover {
        background: #3E92CC;
        color: white;
    }

    .learning-paths {
        padding: 80px 0;
        background: #F8FAFC;
    }

    .paths-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .path-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        position: relative;
    }

    .path-level {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #D4AF37, #DAA520);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .path-card h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.5rem;
        color: #0A2463;
        margin-bottom: 25px;
        padding-right: 80px;
    }

    .path-modules {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .path-modules li {
        padding: 10px 0;
        color: #64748B;
        font-size: 0.95rem;
    }

    .path-duration {
        color: #94A3B8;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-path {
        display: block;
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #00A878, #008060);
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 700;
        transition: transform 0.2s;
    }

    .btn-path:hover {
        transform: translateY(-3px);
    }

    @media (max-width: 1024px) {
        .hero-education-grid {
            grid-template-columns: 1fr;
        }

        .resources-grid,
        .paths-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .hero-title-edu {
            font-size: 2.5rem;
        }

        .resources-grid,
        .paths-grid,
        .hero-stats-edu {
            grid-template-columns: 1fr;
        }
    }
