.stats-section {
            margin: 60px 0;
            padding: 40px 0;
            background: #f8f9fa;
            border-radius: 15px;
        }
        
        .stats-section h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .stat-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            transform: translateY(50px);
            opacity: 0;
            display: flex;
            flex-direction: column;
            border: 1px solid #eaeaea;
        }
        
        .stat-card.visible {
            transform: translateY(0);
            opacity: 1;
        }
        
        .stat-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .stat-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #27ae60;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 15px 0;
            color: #27ae60;
        }
        
        .stat-year {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .stat-description {
            font-size: 1.1rem;
            margin-top: 15px;
            flex-grow: 1;
            color: #5a6b7c;
        }
        
        .progress-bar {
            height: 10px;
            background: #f1f1f1;
            border-radius: 5px;
            margin: 20px 0;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #2ecc71, #27ae60);
            border-radius: 5px;
            width: 0;
            transition: width 1.5s ease-in-out;
        }
        
        .card-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 600;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-card {
                padding: 20px;
            }
        }
/* ===== Сетевые программы — стиль как на скриншоте ===== */
.network-table-section {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.network-table-section .politic__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.network-table-section .politic__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Сетка как на скриншоте */
.network-grid-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 35px;
    border: 1px solid #e9ecef;
}

/* Левая колонка — программы */
.network-programs-col {
    background: #ffffff;
}

.network-programs-col .col-header {
    background: #f8f9fa;
    padding: 16px 24px;
    border-bottom: 2px solid #27ae60;
    font-weight: 700;
    font-size: 1rem;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

/* Правая колонка — вузы-партнеры */
.network-partners-col {
    background: #f8faff;
    border-left: 1px solid #e9ecef;
}

.network-partners-col .col-header {
    background: #f0f4f8;
    padding: 16px 24px;
    border-bottom: 2px solid #2980b9;
    font-weight: 700;
    font-size: 1rem;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Строка программы */
.program-row {
    display: flex;
    flex-direction: column;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f2f4;
    transition: background 0.2s ease;
    min-height: 90px;
    justify-content: center;
}

.program-row:last-child {
    border-bottom: none;
}

.program-row:hover {
    background: #fafffe;
}

.program-row .program-code {
    font-size: 0.82rem;
    color: #27ae60;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.program-row .program-main {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.program-row .program-sub {
    font-size: 0.88rem;
    color: #7f8c8d;
    margin-top: 2px;
}

/* Ячейка партнера */
.partner-cell {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f2f4;
    display: flex;
    align-items: center;
    min-height: 90px;
    transition: background 0.2s ease;
}

.partner-cell:last-child {
    border-bottom: none;
}

.partner-cell:hover {
    background: #f5f9ff;
}

.partner-cell .partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 0.88rem;
    color: #34495e;
    line-height: 1.5;
}

.partner-cell .partner-list .partner-name {
    position: relative;
    padding-right: 10px;
}

.partner-cell .partner-list .partner-name:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -2px;
    color: #bdc3c7;
}

.partner-cell .partner-list .partner-name.highlight {
    color: #2980b9;
    font-weight: 500;
}

.partner-cell .partner-list .partner-name.china {
    color: #c0392b;
}

/* ===== Блок ПИШ «Академия ВСМ» (как на скриншоте) ===== */
.vsm-section {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.vsm-section .politic__title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.vsm-section .politic__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    margin: 12px auto 0;
    border-radius: 2px;
}

.vsm-section .vsm-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.05rem;
    margin-bottom: 35px;
}

/* Карточки ВСМ как на скриншоте */
.vsm-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vsm-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border-top: 5px solid #2980b9;
    transition: all 0.3s ease;
    position: relative;
}

.vsm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.vsm-card .vsm-direction {
    font-size: 0.85rem;
    color: #2980b9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.vsm-card .vsm-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.vsm-card .vsm-specialty {
    font-size: 0.92rem;
    color: #7f8c8d;
    margin-bottom: 14px;
    font-weight: 500;
}

.vsm-card .vsm-pish {
    background: #e8f0fe;
    color: #2980b9;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.vsm-card .vsm-contract {
    font-size: 0.85rem;
    color: #5a6b7c;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 14px;
    border: 1px solid #e9ecef;
}

.vsm-card .vsm-module-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 14px 0 10px;
    padding-top: 14px;
    border-top: 2px solid #f0f2f4;
}

.vsm-card .vsm-module-title .module-icon {
    margin-right: 8px;
}

.vsm-card .vsm-list {
    margin: 0;
    padding-left: 22px;
    color: #5a6b7c;
    line-height: 1.9;
    font-size: 0.92rem;
}

.vsm-card .vsm-list li::marker {
    color: #2980b9;
}

.vsm-card .vsm-list li {
    margin-bottom: 2px;
}

/* Баннер выпуска */
.vsm-graduation {
    background: linear-gradient(135deg, #1a3a4a, #2980b9);
    border-radius: 16px;
    padding: 30px 40px;
    margin: 35px auto 10px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 35px rgba(41, 128, 185, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.vsm-graduation::before {
    content: '🎓';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4.5rem;
    opacity: 0.1;
}

.vsm-graduation .grad-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.vsm-graduation .grad-text {
    font-size: 1.1rem;
    opacity: 0.92;
    font-weight: 300;
}

/* ===== Адаптивность ===== */
@media (max-width: 992px) {
    .network-grid-layout {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .network-partners-col {
        border-left: none;
        border-top: 2px solid #e9ecef;
    }

    .network-partners-col .col-header {
        text-align: left;
        background: #f8f9fa;
        border-bottom-color: #27ae60;
    }

    .partner-cell {
        padding: 14px 24px;
        min-height: 60px;
    }

    .vsm-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .network-table-section .politic__title,
    .vsm-section .politic__title {
        font-size: 1.5rem;
    }

    .program-row {
        padding: 14px 18px;
        min-height: 70px;
    }

    .program-row .program-main {
        font-size: 0.92rem;
    }

    .partner-cell {
        padding: 12px 18px;
        min-height: 50px;
    }

    .partner-cell .partner-list {
        font-size: 0.82rem;
    }

    .vsm-card {
        padding: 22px 20px;
    }

    .vsm-card .vsm-title {
        font-size: 1.1rem;
    }

    .vsm-graduation {
        padding: 22px 20px;
    }

    .vsm-graduation .grad-number {
        font-size: 2.2rem;
    }

    .vsm-graduation::before {
        font-size: 3rem;
        right: 15px;
    }
}
/* ===== Сетевые программы ===== */
.network-table-section {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.network-table-section .politic__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.network-table-section .politic__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Таблица только с программами */
.network-table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 35px;
    border: 1px solid #e9ecef;
    background: #ffffff;
}

.network-table .table-header {
    background: #f8f9fa;
    padding: 16px 24px;
    border-bottom: 2px solid #27ae60;
    font-weight: 700;
    font-size: 1rem;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

/* Строка программы */
.program-row {
    display: flex;
    flex-direction: column;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f2f4;
    transition: background 0.2s ease;
    min-height: 75px;
    justify-content: center;
}

.program-row:last-child {
    border-bottom: none;
}

.program-row:hover {
    background: #fafffe;
}

.program-row .program-code {
    font-size: 0.82rem;
    color: #27ae60;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.program-row .program-main {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.program-row .program-sub {
    font-size: 0.88rem;
    color: #7f8c8d;
    margin-top: 2px;
}

/* Список вузов-партнеров под таблицей - фон светлее */
.partners-list-section {
    margin-top: 25px;
    padding: 20px 24px;
    background: #f5f7fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.partners-list-section .partners-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.partners-list-section .partners-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.partners-list-section .partners-tags .partner-tag {
    font-size: 0.9rem;
    color: #2c3e50;
    position: relative;
    padding-right: 16px;
}

.partners-list-section .partners-tags .partner-tag:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -4px;
    color: #bdc3c7;
}

/* ===== Блок ПИШ «Академия ВСМ» ===== */
.vsm-section {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.vsm-section .politic__title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.vsm-section .politic__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2980b9, #3498db);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Карточки ВСМ */
.vsm-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
}

.vsm-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vsm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.vsm-card .vsm-pgups {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
}

.vsm-card .vsm-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.vsm-card .vsm-specialty {
    font-size: 0.92rem;
    color: #7f8c8d;
    margin-bottom: 12px;
    font-weight: 500;
}

.vsm-card .vsm-pish-item {
    font-size: 0.92rem;
    color: #2c3e50;
    padding: 4px 0;
    display: flex;
    align-items: baseline;
}

.vsm-card .vsm-pish-item .vsm-label {
    font-weight: 600;
    min-width: 120px;
    color: #5a6b7c;
}

.vsm-card .vsm-pish-item .vsm-value {
    font-weight: 500;
    color: #2c3e50;
}

.vsm-card .vsm-pish-item .vsm-value.blue {
    color: #2980b9;
}

.vsm-card .vsm-contract {
    font-size: 0.85rem;
    color: #5a6b7c;
    background: #f8f9fa;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    margin: 12px 0 16px;
    border: 1px solid #e9ecef;
    align-self: flex-start;
}

.vsm-card .vsm-module-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 8px 0 10px;
    padding-top: 12px;
    border-top: 2px solid #f0f2f4;
}

.vsm-card .vsm-list {
    margin: 0;
    padding-left: 22px;
    color: #5a6b7c;
    line-height: 1.9;
    font-size: 0.92rem;
    flex-grow: 1;
}

.vsm-card .vsm-list li::marker {
    color: #2980b9;
}

.vsm-card .vsm-list li {
    margin-bottom: 2px;
}

/* Блок выпуска на одном уровне */
.vsm-card .vsm-graduation {
    background: linear-gradient(135deg, #1a3a4a, #2980b9);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.2);
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.vsm-card .vsm-graduation .grad-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.vsm-card .vsm-graduation .grad-text {
    font-size: 0.92rem;
    opacity: 0.92;
    font-weight: 300;
}

/* ===== Адаптивность ===== */
@media (max-width: 992px) {
    .vsm-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .network-table-section .politic__title,
    .vsm-section .politic__title {
        font-size: 1.5rem;
    }

    .program-row {
        padding: 14px 18px;
        min-height: 60px;
    }

    .program-row .program-main {
        font-size: 0.92rem;
    }

    .vsm-card {
        padding: 22px 20px;
    }

    .vsm-card .vsm-pgups {
        font-size: 1.3rem;
    }

    .vsm-card .vsm-title {
        font-size: 1.05rem;
    }

    .vsm-card .vsm-pish-item {
        flex-direction: column;
        padding: 3px 0;
    }

    .vsm-card .vsm-pish-item .vsm-label {
        min-width: auto;
        font-size: 0.82rem;
    }

    .vsm-card .vsm-graduation .grad-number {
        font-size: 1.6rem;
    }

    .vsm-card .vsm-graduation {
        min-height: 60px;
        padding: 14px 16px;
    }

    .partners-list-section .partners-tags {
        gap: 8px 14px;
    }

    .partners-list-section .partners-tags .partner-tag {
        font-size: 0.82rem;
        padding-right: 12px;
    }
}
/* ===== Образовательная деятельность 2025/2026 ===== */
.education-activity-section {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.education-activity-section .politic__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}



/* Статистика вверху - 3 карточки */
.edu-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
}

.edu-stat-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edu-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.edu-stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #27ae60;
    display: block;
    line-height: 1.1;
}

.edu-stat-item .stat-label {
    font-size: 1rem;
    color: #5a6b7c;
    margin-top: 6px;
    font-weight: 500;
}

/* Ряд с карточками (3 штуки) - белый фон */
.edu-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.edu-card-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 130px;
}

.edu-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.edu-card-item .card-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #27ae60;
    display: block;
    line-height: 1.1;
}

.edu-card-item .card-label {
    font-size: 1rem;
    color: #5a6b7c;
    margin-top: 6px;
    font-weight: 500;
}

.edu-card-item .card-sub {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 2px;
}

/* График контингента студентов - полная ширина */
.edu-chart-full {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.edu-chart-full .chart-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.edu-chart-full .chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 180px;
    padding-top: 10px;
}

.edu-chart-full .chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.edu-chart-full .chart-bar {
    width: 100%;
    max-width: 60px;
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: height 0.6s ease;
    position: relative;
}

.edu-chart-full .chart-bar .bar-value {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
}

.edu-chart-full .chart-bar.bar-green {
    background: linear-gradient(180deg, #27ae60, #2ecc71);
}
.edu-chart-full .chart-bar.bar-blue {
    background: linear-gradient(180deg, #2980b9, #3498db);
}
.edu-chart-full .chart-bar.bar-orange {
    background: linear-gradient(180deg, #e67e22, #f39c12);
}
.edu-chart-full .chart-bar.bar-red {
    background: linear-gradient(180deg, #c0392b, #e74c3c);
}

.edu-chart-full .chart-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 6px;
    font-weight: 500;
}

.edu-chart-full .chart-note {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Иностранные студенты - график */
.edu-foreign-section {
    margin-top: 30px;
}

.edu-foreign-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.edu-foreign-card .foreign-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.edu-foreign-card .foreign-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    padding-top: 10px;
}

.edu-foreign-card .foreign-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    justify-content: flex-end;
}

.edu-foreign-card .foreign-bar {
    width: 100%;
    max-width: 70px;
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: height 0.6s ease;
    position: relative;
    background: linear-gradient(180deg, #2980b9, #3498db);
}
.edu-foreign-card .foreign-bar.bar-green-last {
    background: linear-gradient(180deg, #27ae60, #2ecc71);
}
.edu-foreign-card .foreign-bar .bar-value {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
}

.edu-foreign-card .foreign-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 8px;
    font-weight: 500;
}

/* ===== Адаптивность ===== */
@media (max-width: 992px) {
    .edu-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .edu-cards-row {
        grid-template-columns: 1fr 1fr;
    }

    .edu-foreign-card .foreign-chart {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .education-activity-section .politic__title {
        font-size: 1.5rem;
    }

    .edu-stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .edu-stat-item .stat-number {
        font-size: 2.2rem;
    }

    .edu-cards-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .edu-card-item {
        min-height: 100px;
        padding: 18px 16px;
    }

    .edu-card-item .card-number {
        font-size: 2.2rem;
    }

    .edu-foreign-card {
        padding: 16px;
    }

    .edu-foreign-card .foreign-chart {
        height: 140px;
    }

    .edu-foreign-card .foreign-bar {
        max-width: 50px;
    }

    .edu-foreign-card .foreign-bar .bar-value {
        font-size: 0.75rem;
        top: -20px;
    }

    .edu-foreign-card .foreign-label {
        font-size: 0.75rem;
    }

    .edu-chart-full {
        padding: 16px;
    }

    .edu-chart-full .chart-container {
        height: 140px;
    }

    .edu-chart-full .chart-bar .bar-value {
        font-size: 0.7rem;
        top: -18px;
    }

    .edu-chart-full .chart-label {
        font-size: 0.7rem;
    }
}
