   .mezhdunarodnoe-obrazovanie-page * {
            box-sizing: border-box;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.03;
            background-image: 
                radial-gradient(circle at 10% 20%, #01559B 1px, transparent 1px),
                radial-gradient(circle at 90% 80%, #ff6b00 1px, transparent 1px),
                radial-gradient(circle at 40% 40%, #0ea5e9 1px, transparent 1px);
            background-size: 50px 50px, 70px 70px, 30px 30px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-floating {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-float {
            position: absolute;
            opacity: 0.05;
            animation: mezh-float-anim 25s infinite linear;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-float:nth-child(1) {
            top: 15%;
            left: 5%;
            width: 80px;
            height: 80px;
            background: #ffa726;
            border-radius: 50%;
            animation-delay: 0s;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-float:nth-child(2) {
            top: 65%;
            right: 8%;
            width: 120px;
            height: 120px;
            background: #ff6b00;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: -8s;
            animation-direction: reverse;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-float:nth-child(3) {
            top: 30%;
            right: 20%;
            width: 60px;
            height: 60px;
            background: #0ea5e9;
            border-radius: 50%;
            animation-delay: -15s;
        }
        
        @keyframes mezh-float-anim {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(40px, 60px) rotate(120deg);
            }
            66% {
                transform: translate(-30px, 40px) rotate(240deg);
            }
        }
        
        /* Шапка раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-header {
            background: linear-gradient(135deg, #003366 0%, #01559B 100%);
            color: white;
            padding: 20px 20px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-bottom: 60px;
            margin-top: 0px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-header-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Навигация по разделу */
        .mezhdunarodnoe-obrazovanie-page .mezh-nav {
            position: sticky;
            top: 20px;
            z-index: 100;
            margin: 0 auto 40px;
            background: white;
            border-radius: 16px;
            padding: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-nav-btn {
            padding: 12px 24px;
            border: 2px solid transparent;
            background: transparent;
            color: #64748b;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-nav-btn:hover {
            color: #01559B;
            background: rgba(1, 85, 155, 0.05);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-nav-btn.active {
            background: #01559B;
            color: white;
            box-shadow: 0 4px 15px rgba(1, 85, 155, 0.2);
        }
        
        /* Контейнер раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 100px;
        }
        
        /* Секции раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-section {
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(30px);
            animation: mezh-fadeIn 0.8s ease forwards;
        }
        
        @keyframes mezh-fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(1, 85, 155, 0.1);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-section-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 8px 20px rgba(1, 85, 155, 0.2);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #01559B;
            flex: 1;
        }
        
        /* Карточки раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(1, 85, 155, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(1, 85, 155, 0.15);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, #01559B, #0ea5e9);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-card:hover::before {
            opacity: 1;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-card-title {
            font-size: 1.8rem;
            color: #01559B;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-card-title i {
            color: #ff6b00;
        }
        
        /* Сетки раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-grid-item {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 15px;
            padding: 25px;
            border-left: 4px solid #01559B;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-grid-item:hover {
            transform: translateX(10px);
            background: white;
            box-shadow: 0 10px 25px rgba(1, 85, 155, 0.1);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-grid-item::before {
            content: '→';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #01559B;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-size: 24px;
            font-weight: bold;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-grid-item:hover::before {
            opacity: 1;
            right: 15px;
        }
        
        /* Таблицы раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-table th {
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-table td {
            padding: 18px 20px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-table tr:last-child td {
            border-bottom: none;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-table tr:hover {
            background: #f8fafc;
        }
        
        /* Курсы */
        .mezhdunarodnoe-obrazovanie-page .mezh-courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(1, 85, 155, 0.2);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-header {
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            padding: 25px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-hours {
            font-size: 0.9rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-body {
            padding: 25px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-topic {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-topic i {
            color: #01559B;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-list li {
            padding: 8px 0;
            color: #475569;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            justify-content: space-between;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-course-list li:last-child {
            border-bottom: none;
        }
        
        /* Важная информация */
        .mezhdunarodnoe-obrazovanie-page .mezh-important {
            background: linear-gradient(135deg, #ff6b00 0%, #ffa726 100%);
            border-radius: 20px;
            padding: 40px;
            color: white;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-important-title {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-important-list {
            position: relative;
            z-index: 2;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-important-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-important-list i {
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        /* Контакты */
        .mezhdunarodnoe-obrazovanie-page .mezh-contacts-grid {
            display: grid;
            grid-template-columns:1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(1, 85, 155, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(1, 85, 155, 0.15);
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #01559B 0%, #0ea5e9 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-title {
            font-size: 1.3rem;
            color: #01559B;
            margin-bottom: 15px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-details {
            color: #475569;
            line-height: 1.6;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-details a {
            color: #01559B;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-contact-details a:hover {
            color: #ff6b00;
            text-decoration: underline;
        }
        
        /* Кнопка "Наверх" */
        .mezhdunarodnoe-obrazovanie-page .mezh-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #01559B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(1, 85, 155, 0.3);
            border: 2px solid white;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-top-btn:hover {
            background: #ff6b00;
            transform: translateY(-5px);
        }
        
        /* Футер раздела */
        .mezhdunarodnoe-obrazovanie-page .mezh-footer {
            background: #003366;
            color: white;
            padding: 60px 20px 30px;
            margin-top: 100px;
            text-align: center;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-footer-text {
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .mezhdunarodnoe-obrazovanie-page .mezh-copyright {
            opacity: 0.5;
            font-size: 0.9rem;
            margin-top: 30px;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .mezhdunarodnoe-obrazovanie-page .mezh-title {
                font-size: 2.8rem;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-section-title {
                font-size: 2rem;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-nav {
                position: static;
                margin-bottom: 30px;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-card {
                padding: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .mezhdunarodnoe-obrazovanie-page .mezh-header {
                padding: 80px 20px 60px;
                clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-title {
                font-size: 2.2rem;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-subtitle {
                font-size: 1.1rem;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-section-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-nav-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 576px) {
            .mezhdunarodnoe-obrazovanie-page .mezh-courses-grid {
                grid-template-columns: 1fr;
            }
            
            .mezhdunarodnoe-obrazovanie-page .mezh-important {
                padding: 25px;
            }
        }