   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #c9e8ff;
            color: #1a3a5a;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0;
            background: linear-gradient(180deg, #4a90d9 0%, #87CEEB 40%, #c9e8ff 70%, #ffffff 100%);
        }
        #webgl-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 1;
            pointer-events: none;
        }

        /* ===== ШАПКА ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Arial', sans-serif;
            letter-spacing: 0.5px;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
            color: rgba(20, 50, 80, 0.7);
        }
        .nav-links a:hover {
            color: #0a2a4a;
            border-bottom-color: #4a8ab5;
        }
        .nav-links a.active {
            color: #0a2a4a;
            border-bottom-color: #4a8ab5;
        }

        .nav-phone {
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Arial', sans-serif;
            color: rgba(20, 50, 80, 0.7);
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
        }
        .nav-phone:hover {
            color: #0a2a4a;
            border-bottom-color: #4a8ab5;
        }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px;
            position: relative;
            z-index: 110;
        }
        .burger span {
            display: block;
            width: 32px;
            height: 3px;
            background: #1a3a5a;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 7px);
        }
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -7px);
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 48px;
        }
        .nav-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, opacity 0.2s ease;
            opacity: 0.7;
        }
        .nav-icons a:hover {
            transform: scale(1.08);
            opacity: 1;
        }
        .nav-icons img {
            width: 56px;
            height: 56px;
            display: block;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 28px 24px 36px;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
            border-radius: 0 0 16px 16px;
            overflow: hidden;
            min-height: 200px;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            font-family: 'Arial', sans-serif;
            color: #1a3a5a;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            opacity: 0.8;
            z-index: 2;
            position: relative;
        }
        .mobile-menu a:hover {
            border-bottom-color: #4a8ab5;
            color: #0a2a4a;
            opacity: 1;
        }
        .mobile-menu a.active {
            opacity: 1;
            color: #0a2a4a;
            border-bottom-color: #4a8ab5;
        }
        .mobile-menu .mobile-phone {
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            font-family: 'Arial', sans-serif;
            color: #1a3a5a;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            opacity: 0.8;
            z-index: 2;
            position: relative;
        }
        .mobile-menu .mobile-phone:hover {
            border-bottom-color: #4a8ab5;
            color: #0a2a4a;
            opacity: 1;
        }

        /* ===== ЗВЁЗДОЧКИ ДЛЯ БУРГЕР-МЕНЮ ===== */
        .star-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }
        .star {
            position: absolute;
            opacity: 0;
            animation: star-float linear infinite;
        }
        .star svg {
            width: 100%;
            height: 100%;
            display: block;
            filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
        }
        @keyframes star-float {
            0% {
                opacity: 0;
                transform: translateY(-30px) rotate(0deg) scale(0.5);
            }
            15% {
                opacity: 0.6;
                transform: translateY(20px) rotate(20deg) scale(1.1);
            }
            50% {
                opacity: 0.8;
                transform: translateY(calc(60vh)) rotate(45deg) scale(1);
            }
            85% {
                opacity: 0.5;
                transform: translateY(calc(90vh - 60px)) rotate(70deg) scale(0.8);
            }
            100% {
                opacity: 0;
                transform: translateY(calc(100vh - 30px)) rotate(90deg) scale(0.3);
            }
        }

        /* ===== КОНТЕНТ ===== */
        .sections {
            position: relative;
            z-index: 2;
            padding-top: 80px;
        }
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        .section__content {
            max-width: 1200px;
            width: 100%;
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .section__content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 40px 20px;
        }
        .hero-text h1 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 700;
            color: #1a3a5a;
            text-shadow: 0 2px 30px rgba(255, 255, 255, 0.4);
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .problem-block {
            max-width: 820px;
            margin: 0 auto 20px;
            text-align: center;
            font-size: 18px;
            line-height: 1.8;
            color: rgba(20, 50, 80, 0.8);
        }
        .problem-block strong {
            color: #1a3a5a;
        }

        .contrast-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 20px auto 10px;
            max-width: 900px;
        }
        .contrast-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(6px);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .contrast-card:hover {
            transform: scale(1.01);
        }
        .contrast-card .media-placeholder {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: rgba(30, 80, 120, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: rgba(30, 80, 120, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }
        .contrast-card .media-placeholder video,
        .contrast-card .media-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .contrast-card .caption {
            padding: 18px 20px;
            font-size: 18px;
            font-weight: 600;
            color: #1a3a5a;
            background: rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }
        .contrast-sub {
            text-align: center;
            font-size: 16px;
            color: rgba(20, 50, 80, 0.4);
            margin-top: 2px;
        }

        .about-me-short {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 30px 35px;
            border-radius: 16px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .about-me-short p {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(20, 50, 80, 0.8);
            margin-bottom: 16px;
        }
        .about-me-short .link-arrow {
            display: inline-block;
            font-weight: 600;
            color: #1a5a7a;
            text-decoration: none;
            border-bottom: 2px solid rgba(26, 90, 122, 0.2);
            transition: border-color 0.3s;
        }
        .about-me-short .link-arrow:hover {
            border-bottom-color: #1a5a7a;
        }

        .solution-wrapper {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 35px 35px 25px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .solution-wrapper h2 {
            font-size: 26px;
            text-align: center;
            color: #1a3a5a;
            margin-bottom: 12px;
        }
        .solution-intro {
            text-align: center;
            font-size: 17px;
            color: rgba(20, 50, 80, 0.7);
            max-width: 750px;
            margin: 0 auto 24px;
            line-height: 1.7;
        }
        .solution-intro strong {
            color: #1a3a5a;
        }
        .solution-footer {
            text-align: center;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        .solution-footer p {
            font-size: 17px;
            color: rgba(20, 50, 80, 0.6);
            margin-bottom: 6px;
        }
        .solution-footer p strong {
            color: #1a3a5a;
        }
        .solution-footer .link-underline {
            display: inline-block;
            margin-top: 12px;
            font-weight: 600;
            font-size: 17px;
            color: #1a5a7a;
            text-decoration: none;
            border-bottom: 2px solid rgba(26, 90, 122, 0.3);
            transition: border-color 0.3s;
        }
        .solution-footer .link-underline:hover {
            border-bottom-color: #1a5a7a;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 20px 0 10px;
        }
        .solution-item {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(6px);
            border-radius: 16px;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
            overflow: hidden;
            padding: 0 0 20px 0;
            display: flex;
            flex-direction: column;
        }
        .solution-item:hover {
            transform: translateY(-4px);
        }
        .solution-photo {
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            background: rgba(30, 80, 120, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
        }
        .solution-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .solution-item h4 {
            font-size: 19px;
            color: #1a3a5a;
            margin: 14px 18px 6px 18px;
            padding: 0;
            line-height: 1.3;
        }
        .solution-item p {
            font-size: 15px;
            color: rgba(20, 50, 80, 0.65);
            margin: 0 18px 0 18px;
            padding: 0;
            line-height: 1.6;
            flex: 1;
        }

        .contact-block {
            text-align: center;
            padding: 20px 20px 20px 20px;
        }
        .contact-block h3 {
            font-size: 26px;
            color: #1a3a5a;
            margin-bottom: 8px;
        }
        .contact-block p {
            font-size: 17px;
            color: rgba(20, 50, 80, 0.7);
            margin-bottom: 16px;
        }
        .contact-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px 40px;
            margin-bottom: 0;
        }
        .contact-links a {
            color: #1a4a6a;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
        }
        .contact-links a:hover {
            border-bottom-color: #4a8ab5;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 20px 0;
        }
        .grid-card {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(8px);
            padding: 30px 25px;
            border-radius: 16px;
            text-align: center;
            text-decoration: none;
            color: #1a3a5a;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
        }
        .grid-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.7);
            box-shadow: 0 16px 50px rgba(30, 80, 120, 0.08);
        }
        .grid-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a3a5a;
        }
        .grid-card p {
            font-size: 15px;
            color: rgba(20, 50, 80, 0.65);
            margin: 0;
            line-height: 1.5;
        }

        .reality-stripes {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 30px 35px 25px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .reality-stripes h3 {
            font-size: 24px;
            text-align: center;
            color: #1a3a5a;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .reality-stripe {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .reality-stripe:last-child {
            border-bottom: none;
        }
        .reality-stripe .stripe-icon {
            font-size: 28px;
            min-width: 40px;
            text-align: center;
            line-height: 1.4;
            flex-shrink: 0;
        }
        .reality-stripe strong {
            display: block;
            font-size: 19px;
            color: #1a3a5a;
            margin-bottom: 2px;
        }
        .reality-stripe span {
            font-size: 17px;
            color: rgba(20, 50, 80, 0.7);
            line-height: 1.6;
        }
        .reality-stripe em {
            color: #1a5a7a;
            font-style: italic;
        }

        @media (max-width: 600px) {
            .reality-stripes {
                padding: 20px 16px;
            }
            .reality-stripe {
                padding: 12px 12px;
                gap: 12px;
            }
            .reality-stripe .stripe-icon {
                font-size: 24px;
                min-width: 32px;
            }
            .reality-stripe strong {
                font-size: 19px;
            }
            .reality-stripe span {
                font-size: 17px;
            }
        }

        .footer {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding: 24px 0;
            margin-top: 20px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copy {
            color: rgba(20, 50, 80, 0.4);
            font-size: 14px;
        }
        .footer-contacts {
            display: flex;
            gap: 20px;
        }
        .footer-contacts a {
            color: rgba(20, 50, 80, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-contacts a:hover {
            color: #1a4a6a;
        }

        .about-me-wrapper {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .about-me-text {
            flex: 1;
        }
        .about-me-text p {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(20, 50, 80, 0.8);
            margin-bottom: 16px;
        }
        .about-me-photo {
            flex-shrink: 0;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
        }
        .about-me-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 900px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .contrast-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 700px) {
            .nav-links {
                display: none;
            }
            .nav-phone {
                display: none;
            }
            .burger {
                display: flex;
            }
            .header {
                padding: 14px 18px;
            }
            .nav-icons {
                gap: 32px;
            }
            .nav-icons img {
                width: 48px;
                height: 48px;
            }
            .about-me-wrapper {
                flex-direction: column;
                text-align: center;
            }
            .about-me-photo {
                width: 220px;
                height: 220px;
                order: -1;
            }
            .reality-block {
                padding: 20px;
            }
            .reality-block li {
                font-size: 15px;
                padding: 8px 0;
                gap: 10px;
            }
            .reality-block .marker {
                font-size: 16px;
                min-width: 18px;
            }
        }

        @media (max-width: 600px) {
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .contrast-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
            .contrast-card .caption {
                font-size: 16px;
                padding: 14px 16px;
            }
            .hero-text {
                padding: 20px 12px;
            }
            .section {
                padding: 20px 12px;
                min-height: auto;
                padding-top: 90px;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-contacts {
                flex-direction: column;
                gap: 6px;
            }
            .reality-block {
                padding: 16px;
            }
            .reality-block h3 {
                font-size: 19px;
            }
            .reality-block li {
                font-size: 14px;
                padding: 8px 0;
                gap: 8px;
            }
            .reality-block .marker {
                font-size: 14px;
                min-width: 16px;
            }
            .about-me-short {
                padding: 20px;
            }
            .solution-grid {
                grid-template-columns: 1fr 1fr;
            }
            .solution-wrapper {
                padding: 20px;
            }
            .contact-links {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 450px) {
            .solution-grid {
                grid-template-columns: 1fr;
            }
            .header {
                padding: 12px 14px;
            }
            .nav-icons {
                gap: 24px;
            }
            .nav-icons img {
                width: 42px;
                height: 42px;
            }
            .mobile-menu a {
                font-size: 18px;
            }
            .mobile-menu .mobile-phone {
                font-size: 18px;
            }
            .about-me-photo {
                width: 180px;
                height: 180px;
            }
            .reality-block {
                padding: 14px;
            }
            .reality-block li {
                font-size: 13px;
                padding: 6px 0;
            }
        }
        /* ===== УНИКАЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ "ОБ АВТОРЕ" ===== */

/* Блок с фото и текстом (обтекание) */
.about-page-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 20px 0;
}
.about-page-photo {
    flex-shrink: 0;
    width: 280px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
}
.about-page-photo img {
    width: 100%;
    height: auto;
    display: block;
}
.about-page-text {
    flex: 1;
}
.about-page-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(20, 50, 80, 0.85);
    margin-bottom: 16px;
}
.about-page-text p:last-child {
    margin-bottom: 0;
}
.about-page-text a {
    color: #1a5a7a;
    text-decoration: none;
    border-bottom: 2px solid rgba(26, 90, 122, 0.2);
    transition: border-color 0.3s;
    font-weight: 600;
}
.about-page-text a:hover {
    border-bottom-color: #1a5a7a;
}

/* ===== АДАПТИВ ДЛЯ СТРАНИЦЫ ===== */
@media (max-width: 800px) {
    .about-page-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .about-page-photo {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .about-page-text {
        text-align: left;
    }
}
@media (max-width: 500px) {
    .about-page-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .about-page-text p {
        font-size: 16px;
    }
}
/* ===== ОТСТУПЫ ТОЛЬКО ДЛЯ СТРАНИЦЫ "ОБ АВТОРЕ" ===== */
.about-page .section {
    padding-top: 20px;
}
.about-page.sections {
    padding-top: 60px;
}
.about-page .about-page-wrapper {
    margin-top: 0;
    padding-top: 10px;
}

/* ===== БЛОК "ВОЕННО-ОРКЕСТРОВАЯ ДЕЯТЕЛЬНОСТЬ" ===== */
.activities-block {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 35px 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.activities-block h2 {
    font-size: 24px;
    text-align: center;
    color: #1a3a5a;
    margin-bottom: 16px;
    font-weight: 700;
}
.activities-sub {
    text-align: center;
    color: rgba(20, 50, 80, 0.5);
    font-size: 15px;
    margin-bottom: 16px;
}
.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.activities-col h3 {
    font-size: 19px;
    color: #1a3a5a;
    border-bottom: 2px solid rgba(26, 90, 122, 0.2);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.activities-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: rgba(20, 50, 80, 0.8);
}
.activities-list li:last-child {
    border-bottom: none;
}
.activities-list strong {
    color: #1a3a5a;
}

@media (max-width: 700px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .activities-block {
        padding: 20px 16px;
    }
}
/* ===== БЛОК "ПЕДАГОГИЧЕСКАЯ ДЕЯТЕЛЬНОСТЬ" ===== */
.pedagogical-block {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 35px 35px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.pedagogical-block h2 {
    font-size: 24px;
    text-align: center;
    color: #1a3a5a;
    margin-bottom: 16px;
    font-weight: 700;
}
.pedagogical-sub {
    text-align: center;
    color: rgba(20, 50, 80, 0.5);
    font-size: 15px;
    margin-bottom: 16px;
}
.pedagogical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.pedagogical-col h3 {
    font-size: 19px;
    color: #1a3a5a;
    border-bottom: 2px solid rgba(26, 90, 122, 0.2);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.pedagogical-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pedagogical-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: rgba(20, 50, 80, 0.8);
}
.pedagogical-list li:last-child {
    border-bottom: none;
}
.pedagogical-list strong {
    color: #1a3a5a;
}


/* ===== ГАЛЕРЕЯ В СТИЛЕ КОНТРАСТА ===== */
.gallery-block {
    text-align: center;
    margin-bottom: 16px;
}
.gallery-block h2 {
    font-size: 24px;
    color: #1a3a5a;
    font-weight: 700;
}
.gallery-block p {
    color: rgba(20, 50, 80, 0.5);
    font-size: 15px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px auto 10px;
    max-width: 900px;
}
.gallery-grid + .gallery-grid {
    margin-top: 16px;
}
.gallery-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.gallery-card:hover {
    transform: scale(1.01);
}
.gallery-card .media-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(30, 80, 120, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(30, 80, 120, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}
.gallery-card .media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-card .caption {
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #1a3a5a;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    .gallery-card .caption {
        font-size: 16px;
        padding: 14px 16px;
    }
}