        /* ----- БАЗА / ОБНУЛЕНИЕ ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #fff;
            color: #1e2b32;
            line-height: 1.5;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ----- ХЕДЕР (с разделителем) ----- */
        .new-header {
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
            background: rgba(255,255,255,0.92);
            border-bottom: 1px solid rgba(0,166,166,0.15);
            flex-wrap: wrap;
        }
        .new-header .logo img {
            height: 42px;
            width: auto;
            display: block;
        }

        .desktop-nav {
            display: flex;
            gap: 32px;
            list-style: none;
            font-weight: 500;
            font-size: 15px;
        }
        .desktop-nav a {
            color: #02434C;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            letter-spacing: 0.3px;
        }
        .desktop-nav a:hover,
        .desktop-nav .selected a {
            border-bottom-color: #00A6A6;
            color: #00A6A6;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 4px;
            background: none;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #02434C;
            border-radius: 3px;
            transition: 0.25s ease;
        }
        .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; transform: scale(0); }
        .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(2px);
            z-index: 999;
            display: none;
            justify-content: flex-start;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .mobile-menu.open { display: flex; opacity: 1; }
        .mobile-menu-inner {
            background: #ffffff;
            width: 280px;
            max-width: 80%;
            height: 100%;
            padding: 80px 28px 32px;
            box-shadow: 2px 0 30px rgba(0,0,0,0.12);
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
        }
        .mobile-menu.open .mobile-menu-inner { transform: translateX(0); }
        .mobile-menu-inner ul { list-style: none; }
        .mobile-menu-inner li { margin: 8px 0; }
        .mobile-menu-inner a {
            display: block;
            padding: 14px 0;
            font-size: 18px;
            font-weight: 500;
            color: #02434C;
            border-bottom: 1px solid #f0f4f5;
        }
        .mobile-menu-inner a:hover { color: #00A6A6; }
        .close-menu {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 32px;
            background: none;
            border: none;
            color: #02434C;
            cursor: pointer;
            padding: 4px 10px;
        }

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
            .new-header { padding: 10px 16px; }
        }

        /* ----- АНИМАЦИЯ ПОЯВЛЕНИЯ ----- */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ----- ГЛАВНЫЙ БЛОК (видео + текст) ----- */
        .hero-section {
            background: #eef2f3;
            border-bottom: 1px solid rgba(0,166,166,0.2);
        }
        .main_slider video {
            width: 100%;
            display: block;
            background: #d9e2e6;
        }
        .slide_text {
            padding: 32px 20px 24px;
            text-align: center;
            background: linear-gradient(to right, #f8fbfc, #eef4f7);
        }
        .main_capt {
            font-size: 2.4rem;
            font-weight: 700;
            color: #02434C;
            letter-spacing: -0.5px;
            margin-bottom: 6px;
        }
        .main_info {
            font-size: 1.3rem;
            color: #3a5a64;
            font-weight: 300;
        }
        .main_info span {
            background: #00A6A6;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            margin-left: 8px;
            display: inline-block;
        }

        /* ----- БЛОКИ С РАЗДЕЛИТЕЛЯМИ ----- */
        .section {
            padding: 48px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #02434C;
            margin-bottom: 24px;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section h2::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, #00A6A6, transparent);
        }

        /* ----- БЛОК "О БЦ" ----- */
        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }
        .about-grid .leftblock {
            flex: 2 1 300px;
        }
        .about-grid .leftblock p {
            font-size: 1.05rem;
            color: #2a404a;
            margin-bottom: 18px;
            line-height: 1.7;
        }
        .about-grid .rightblock {
            flex: 1 1 280px;
        }
        .about-grid .rightblock img {
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .about-grid .rightblock img:hover {
            transform: scale(1.01);
        }

        .btn {
            display: inline-block;
            background: #02434C;
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 500;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #00A6A6;
            box-shadow: 0 6px 16px rgba(0,166,166,0.3);
            transform: translateY(-2px);
        }

        /* ----- НОВОСТИ (карточки) ----- */
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 24px;
            margin: 20px 0 28px;
        }
        .news-item {
            background: #f9fbfc;
            border-radius: 16px;
            overflow: hidden;
            transition: 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid #eef2f3;
        }
        .news-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.08);
        }
        .news-item img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }
        .news-item .newscapt {
            display: block;
            padding: 14px 16px 18px;
            font-weight: 600;
            color: #02434C;
        }

        /* ----- СЛАЙДЕР (интерактив) ----- */
        .slider-wrapper {
            background: #f4f8f9;
            padding: 24px 0 16px;
            border-radius: 24px;
        }
        .trigger {
            display: flex;
            gap: 12px;
            margin: 0 0 20px 0;
        }
        .trigger .active_tab {
            background: #02434C;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            cursor: default;
            font-weight: 500;
        }
        .swiper-slide img {
            width: 100%;
            height: 230px;
            object-fit: cover;
            border-radius: 14px;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .swiper-slide img:hover {
            transform: scale(1.02);
        }
        .swiper-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .swiper-nav div {
            cursor: pointer;
            transition: 0.2s;
        }
        .swiper-nav div:hover {
            opacity: 0.7;
        }

        /* ----- АККОРДЕОН (интерактив) ----- */
        .accordion-item {
            border-bottom: 1px solid #e0e8ec;
            padding: 8px 0;
        }
        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            font-weight: 600;
            color: #02434C;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .accordion-header span {
            font-size: 1.6rem;
            transition: 0.3s;
            color: #00A6A6;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 4px;
            color: #2a404a;
        }
        .accordion-content.open {
            max-height: 300px;
            padding: 8px 4px 18px;
        }
        .accordion-header.active span {
            transform: rotate(45deg);
        }

        /* ----- ТАЙМЕР / СЧЁТЧИК (интерактив) ----- */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin: 24px 0 8px;
        }
        .stat-card {
            background: #f4f8f9;
            padding: 20px 12px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(0,166,166,0.1);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #02434C;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #4a6a74;
        }

        /* ----- КАРТА ----- */
        .map-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        }

        /* ----- ФУТЕР ----- */
        #footer {
            background: #02434C;
            color: #fff;
            padding: 40px 24px;
            margin-top: 20px;
        }
        .foottop {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .bottom-menu ul {
            display: flex;
            gap: 24px;
            list-style: none;
            flex-wrap: wrap;
        }
        .bottom-menu a {
            color: rgba(255,255,255,0.8);
            font-weight: 400;
            transition: 0.2s;
        }
        .bottom-menu a:hover { color: #fff; }
        .footbottom {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
        }
        .footdwn {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
        }
        .footdwn a {
            color: rgba(255,255,255,0.9);
        }
        .little { opacity: 0.6; font-size: 0.85rem; }

        .mobfooter { display: none; }
        @media (max-width: 600px) {
            .mobfooter { display: block; background: #02434C; color: #fff; padding: 24px 16px; }
            #footer { display: none; }
            .footbottom_mob { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; }
            .mobfooterleft ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
            .mobfooterleft a { color: rgba(255,255,255,0.8); }
            .footdwn_mob a { color: rgba(255,255,255,0.9); display: inline-block; margin: 4px 0; }
            .footer_mob_logo img { height: 36px; }
            .main_capt { font-size: 1.8rem; }
        }