
        /* Подключение шрифта Avenir Next */
        @import url('https://fonts.cdnfonts.com/css/avenir-next-lt-pro');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Avenir Next', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .header {
            padding-top: 36px;
            width: 100%;
        }

        .header-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 40px;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            width: 100%;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
            flex: 1;
            justify-content: flex-start;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 40px;
            flex: 1;
            justify-content: flex-end;
        }

        .logo-container {
            flex: 0 0 auto;
            display: flex;
            justify-content: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-link {
            color: #0084C4;
            font-size: 14px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            opacity: 0.8;
        }

        .logo {
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .phone {
            color: #0084C4;
            font-size: 14px;
            text-decoration: none;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Гамбургер меню */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1000;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: #0084C4;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Мобильное меню */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 999;
            padding: 100px 20px 40px;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            width: 100%;
        }

        .mobile-nav-link {
            color: #0084C4;
            font-size: 24px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            text-align: center;
            width: 100%;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 132, 196, 0.1);
        }

        .mobile-phone {
            color: #0084C4;
            font-size: 22px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 40px;
            padding: 15px 25px;
            border: 2px solid #0084C4;
            border-radius: 10px;
            text-align: center;
        }

        .mobile-logo-container {
            display: none;
            justify-content: center;
            margin-bottom: 30px;
        }

        .mobile-logo {
            width: 80px;
            height: 80px;
        }

        /* Основной разделитель - используется везде */
        .divider {
            height: 1px;
            background-color: #0084C4;
            width: 100%;
            margin-top: 36px;
        }

        /* Контейнер для разделителя */
        .divider-wrapper {
            width: 100%;
            padding: 0 40px;
        }

        /* Новая секция под хедером */
        .hero-section {
            padding-top: 220px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-title {
            font-size: 125px;
            color: #0084C4;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: 35px;
            color: #E9212B;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 80px;
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .hero-description {
            font-size: 40px;
            color: #004668;
            line-height: 1.3;
            max-width: 1200px;
            margin-bottom: 96px;
        }

        .hero-description p {
            margin: 0;
            padding: 0;
        }

        .help-button {
            width: 359px;
            height: 69px;
            background-color: transparent;
            border: 1px solid #0084C4;
            border-radius: 20px;
            color: #0084C4;
            font-size: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-bottom: 96px;
        }

        .help-button:hover {
            background-color: rgba(0, 132, 196, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        /* Секция "О НАС" */
        .about-section {
            width: 100%;
            padding: 52px 40px 0 20px;
        }

        .section-container {
            width: 100%;
            max-width: none;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            gap: 40px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
            align-items: stretch;
        }

        .about-text {
            flex: 0 0 calc(60% - 20px);
            text-align: left;
            max-width: 700px;
            display: flex;
            flex-direction: column;
            margin-right: 60px;
        }

        .date-line {
            font-size: 30px;
            color: #004668;
            line-height: 1.4;
            margin-bottom: 40px;
        }

        .date-line p {
            margin: 0;
            padding: 0;
        }

        .paragraph {
            font-size: 18px;
            color: #004668;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .paragraph:last-child {
            margin-bottom: 0;
        }

        /* Стили для блока статистики */
        .stats-block {
            flex: 0 0 calc(45% - 20px);
            max-width: 500px;
            display: flex;
            flex-direction: column;
        }

        .stats-title {
            font-size: 30px;
            color: #004668;
            font-weight: 500;
            margin-bottom: 40px;
            text-align: left;
        }

        .stats-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            flex: 1;
        }

        .stat-item {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            min-height: 136px;
        }

        .stat-line {
            width: 1px;
            height: 136px;
            background-color: #E93321;
            flex-shrink: 0;
        }

        .stat-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            flex: 1;
        }

        .stat-number {
            font-size: 100px;
            color: #0084C4;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-description {
            font-size: 25px;
            color: #0084C4;
            line-height: 1.2;
        }

        /* Стили для секции проектов */
        .projects-section {
            width: 100%;
            padding: 52px 40px 52px 40px;
        }

        .projects-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .projects-content {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .project-item {
            width: 354px;
            height: 422px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 8px 24px rgba(0, 132, 196, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .project-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 32px rgba(0, 132, 196, 0.4);
        }

        .project-image {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(81, 81, 81, 0.5);
            z-index: 1;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .project-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #FFFFFF;
            font-size: 30px;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
            z-index: 2;
            width: 90%;
        }

        .project-line {
            display: block;
            margin-bottom: 2px;
            font-weight: 700;
        }

        .project-line:last-child {
            margin-bottom: 0;
        }

        /* Стили для секции "КОМАНДА" */
        .team-section {
            width: 100%;
            padding: 52px 40px 52px 40px;
        }

        .team-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-text {
            font-size: 20px;
            color: #004668;
            text-align: center;
            line-height: 1.4;
            max-width: 1000px;
            margin-bottom: 60px;
            width: 100%;
        }

        .team-text p {
            margin: 0;
            padding: 0;
        }

        .team-text-line1, .team-text-line2 {
            display: block;
        }

        .team-buttons {
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 1100px;
            gap: 80px;
        }

        .team-button {
            flex: 0 0 calc(50% - 20px);
            height: 77px;
            background-color: transparent;
            border: 1px solid #0084C4;
            border-radius: 10px;
            color: #0084C4;
            font-size: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            text-decoration: none;
            position: relative;
            min-width: 0;
        }

        .team-button:hover {
            background-color: rgba(0, 132, 196, 0.05);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .button-text {
            flex-grow: 1;
            text-align: left;
        }

        .button-arrow {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
        }

        .button-arrow svg {
            width: 100%;
            height: 100%;
        }

        .arrow-path {
            stroke: #0084C4;
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Стили для секции "СМИ О НАС" */
        .media-section {
            width: 100%;
            padding: 52px 40px 52px 40px;
        }

        .media-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .media-intro {
            font-size: 20px;
            color: #004668;
            text-align: center;
            margin-bottom: 50px;
            line-height: 1.4;
        }

        .media-intro p {
            margin: 0;
            padding: 0;
        }

        .media-cards {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .media-card {
            width: 378px;
            height: 289px;
            background-color: transparent;
            border: 1px solid #0084C4;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 132, 196, 0.3);
            padding: 20px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .media-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 132, 196, 0.4);
        }

        .card-image {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 5px;
            flex-shrink: 0;
        }

        .card-image-placeholder {
            background-color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0084C4;
            font-weight: 500;
        }

        .card1-image {
            width: 346px;
            height: 110px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .card2-image {
            width: 284px;
            height: 149px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .card3-image {
            width: 288px;
            height: 149px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .card-content {
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 15px;
            margin-top: auto;
            padding-top: 10px;
        }

        .card-text {
            flex: 1;
            font-size: 20px;
            color: #004668;
            line-height: 1.2;
            text-align: left;
            min-height: 48px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .card-text-line {
            display: block;
            margin-bottom: 2px;
            height: 24px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .card-text-line:last-child {
            margin-bottom: 0;
        }

        .card-arrow {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            margin-bottom: 5px;
        }

        .card-arrow svg {
            width: 100%;
            height: 100%;
        }

        .card-arrow-path {
            stroke: #0084C4;
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Видео карусель */
        .video-carousel {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .carousel-arrow {
            flex-shrink: 0;
            width: 85px;
            height: 85px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .carousel-arrow:hover {
            transform: scale(1.1);
        }

        .carousel-arrow svg {
            width: 100%;
            height: 100%;
        }

        .carousel-arrow-path {
            stroke: #0084C4;
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .video-container {
            width: 960px;
            height: 540px;
            background-color: #f0f0f0;
            border: 1px solid #0084C4;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0084C4;
            font-weight: 500;
            font-size: 20px;
        }

        /* Новая секция "ПАРТНЕРЫ" */
        .partners-section {
            width: 100%;
            padding: 52px 40px 52px 40px;
        }

        .partners-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .partners-text {
            font-size: 20px;
            color: #004668;
            text-align: center;
            line-height: 1.4;
            max-width: 1000px;
            margin: 70px auto 60px;
            width: 100%;
        }

        .partners-text p {
            margin: 0;
            padding: 0;
            margin-bottom: 20px;
        }

        .partners-text p:last-child {
            margin-bottom: 0;
        }

        .logos-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin-bottom: 80px;
            align-items: center;
        }

        .logos-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
            width: 100%;
            flex-wrap: nowrap;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Специальные размеры для логотипов */
        .logo1 { width: 166px; height: 66px; }
        .logo2 { width: 159px; height: 78px; }
        .logo3 { width: 115px; height: 90px; }
        .logo4 { width: 107px; height: 107px; }
        .logo5 { width: 89px; height: 101px; }
        .logo6 { width: 130px; height: 125px; }
        .logo7 { width: 136px; height: 124px; }

        /* Секция "НАГРАДЫ" */
        .awards-section {
            width: 100%;
            padding: 52px 40px 52px 40px;
        }

        .awards-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .awards-carousel {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
        }

        .awards-photo-container {
            width: 960px;
            height: 540px;
            background-color: #f0f0f0;
            border: 1px solid #0084C4;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0084C4;
            font-weight: 500;
            font-size: 20px;
        }


/* ФУТЕР */
.footer {
    background-color: #EFF8FF;
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;

}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contacts {
    flex: 1;
    max-width: 50%;
}

.footer-title {
    color: #0084C4;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info {
    color: #004668;
    font-size: 18px;
    line-height: 1.2;
}

.contact-line {
    display: block;
    margin-bottom: 8px;
}

.contact-line:last-child {
    margin-bottom: 0;
}

.footer-social {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.social-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.social-logo {
    width: 86px;
    height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-logo:hover {
    transform: scale(1.05);
}

.social-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

        .charter-link {
            color: #0084C4;
            font-size: 20px;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .charter-link:hover {
            color: #004668;
        }

        .charter-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #0084C4;
            transition: background-color 0.3s ease;
        }

        .charter-link:hover::after {
            background-color: #004668;
        }

        /* Адаптация для очень широких экранов */
        @media (min-width: 1600px) {
            .header-container {
                padding: 0 80px;
            }

            .divider-wrapper {
                padding: 0 80px;
            }

            .nav-left, .nav-right {
                gap: 60px;
            }

            .footer-container {
                padding: 0 80px;
            }
        }

        @media (min-width: 2000px) {
            .header-container {
                padding: 0 120px;
            }

            .divider-wrapper {
                padding: 0 120px;
            }

            .nav-left, .nav-right {
                gap: 80px;
            }

            .footer-container {
                padding: 0 120px;
            }
        }

        /* Адаптация для планшетов */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 30px;
            }

            .divider-wrapper {
                padding: 0 30px;
            }

            .nav-left, .nav-right {
                gap: 30px;
            }

            .logo-container {
                position: static;
                transform: none;
                order: 2;
            }

            .header-content {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .nav-left {
                order: 1;
                justify-content: center;
                flex: 1 1 100%;
            }

            .nav-right {
                order: 3;
                justify-content: center;
                flex: 1 1 100%;
            }

            /* Адаптация hero-секции */
            .hero-section {
                padding-top: 150px;
            }

            .hero-title {
                font-size: 90px;
            }

            .hero-subtitle {
                font-size: 28px;
                white-space: normal;
                max-width: 700px;
                margin-bottom: 60px;
            }

            .hero-description {
                font-size: 32px;
                max-width: 900px;
                margin-bottom: 70px;
            }

            /* Адаптация футера */
            .footer-container {
                padding: 0 30px;
            }

            .footer {
                height: 300px;
            }

            .footer-title {
                font-size: 40px;
                margin-bottom: 20px;
            }

            .contact-info {
                font-size: 16px;
            }

            .social-logo {
                width: 70px;
                height: 68px;
            }

            .charter-link {
                font-size: 18px;
            }
        }

        /* Адаптация для мобильных */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }

            .divider-wrapper {
                padding: 0 20px;
            }

            /* Скрываем обычную навигацию на мобильных */
            .nav-left, .nav-right {
                display: none;
            }

            /* Показываем гамбургер и мобильный логотип */
            .menu-toggle {
                display: flex;
            }

            .mobile-logo-container {
                display: flex;
            }

            /* Центрируем логотип в хедере для мобильных */
            .header-content {
                justify-content: space-between;
                align-items: center;
                height: 80px;
            }

            .logo-container {
                position: static;
                transform: none;
                order: 0;
                flex: 0 0 auto;
            }

            .logo {
                width: 50px;
                height: 50px;
            }

            /* Мобильное меню */
            .mobile-menu {
                display: flex;
            }

            /* Адаптация hero-секции */
            .hero-section {
                padding-top: 120px;
            }

            .hero-title {
                font-size: 60px;
                margin-bottom: 15px;
            }

            .hero-subtitle {
                font-size: 22px;
                white-space: normal;
                max-width: 500px;
                margin-bottom: 50px;
            }

            .hero-description {
                font-size: 24px;
                max-width: 600px;
                margin-bottom: 60px;
            }

            .help-button {
                width: 300px;
                height: 60px;
                font-size: 26px;
                margin-bottom: 60px;
            }

            /* Адаптация футера */
            .footer {
                height: 500px;
                padding: 40px 0;
            }

            .footer-container {
                flex-direction: column;
                padding: 0 20px;
                gap: 40px;
            }

            .footer-contacts {
                text-align: center;
                width: 100%;
            }

            .footer-title {
                font-size: 35px;
                margin-bottom: 25px;
            }

            .contact-info {
                font-size: 16px;
                line-height: 1.6;
            }

            .footer-social {
                width: 100%;
                gap: 25px;
            }

            .social-logo {
                width: 70px;
                height: 68px;
            }

            .charter-link {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 15px;
            }

            .divider-wrapper {
                padding: 0 15px;
            }

            .logo {
                width: 45px;
                height: 45px;
            }

            /* Адаптация hero-секции */
            .hero-section {
                padding-top: 100px;
            }

            .hero-title {
                font-size: 45px;
            }

            .hero-subtitle {
                font-size: 18px;
                max-width: 350px;
                margin-bottom: 40px;
            }

            .hero-description {
                font-size: 20px;
                max-width: 400px;
                margin-bottom: 50px;
            }

            .help-button {
                width: 250px;
                height: 55px;
                font-size: 22px;
                margin-bottom: 50px;
            }

            /* Адаптация футера */
            .footer {
                height: 450px;
                padding: 30px 0;
            }

            .footer-container {
                padding: 0 15px;
                gap: 30px;
            }

            .footer-title {
                font-size: 30px;
                margin-bottom: 20px;
            }

            .contact-info {
                font-size: 15px;
            }

            .social-logos {
                gap: 20px;
            }

            .social-logo {
                width: 60px;
                height: 58px;
            }

            .charter-link {
                font-size: 16px;
            }
        }

        @media (max-width: 360px) {
            .hero-title {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-description {
                font-size: 18px;
            }

            .help-button {
                width: 220px;
                height: 50px;
                font-size: 20px;
            }

            /* Адаптация футера */
            .footer {
                height: 400px;
                padding: 25px 0;
            }

            .footer-title {
                font-size: 26px;
            }

            .contact-info {
                font-size: 14px;
            }

            .social-logos {
                gap: 15px;
            }

            .social-logo {
                width: 55px;
                height: 53px;
            }

            .charter-link {
                font-size: 15px;
            }
        }

        /* Объединение абзацев для больших экранов */
        @media (min-width: 1024px) {
            .about-text .paragraph:nth-child(3) {
                display: none;
            }

            .date-line {
                margin-bottom: 50px;
            }

            .paragraph {
                margin-bottom: 20px;
            }

            .stats-title {
                margin-bottom: 50px;
            }

            .stats-container {
                gap: 50px;
            }
        }

        @media (min-width: 1600px) {
            .about-section {
                padding: 52px 80px 0 60px;
            }
            .about-content {
                max-width: 1400px;
            }
        }

        @media (min-width: 2000px) {
            .about-section {
                padding: 52px 120px 0 80px;
            }
            .about-content {
                max-width: 1600px;
            }
        }

        /* Адаптация для планшетов */
        @media (max-width: 1200px) {
            .about-content {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .about-text, .stats-block {
                flex: 1;
                max-width: 800px;
                width: 100%;
            }

            .stats-block {
                margin-top: 0;
            }

            .stat-item {
                justify-content: flex-start;
            }

            .stat-content {
                width: 100%;
            }

            .about-text .paragraph:nth-child(3) {
                display: block;
            }

            /* Адаптация проектов */
            .projects-content {
                gap: 40px;
            }

            .project-item {
                width: 320px;
                height: 380px;
            }

            /* Адаптация медиа */
            .media-cards {
                gap: 40px;
            }

            .media-card {
                width: 350px;
                height: 280px;
            }

            .card1-image {
                width: 320px;
                height: 100px;
            }

            .card2-image {
                width: 260px;
                height: 140px;
            }

            .card3-image {
                width: 264px;
                height: 140px;
            }

            .video-container {
                width: 800px;
                height: 450px;
            }

            /* Адаптация партнеров */
            .logos-row {
                gap: 60px;
            }

            .awards-photo-container {
                width: 800px;
                height: 450px;
            }
        }

        @media (max-width: 1024px) {
            .about-section {
                padding: 52px 30px 0 30px;
            }

            .section-title {
                font-size: 45px;
                margin-bottom: 60px;
            }

            .date-line {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .paragraph {
                font-size: 17px;
                margin-bottom: 35px;
            }

            .stats-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .stat-number {
                font-size: 90px;
            }

            .stat-description {
                font-size: 23px;
            }

            .stats-container {
                gap: 35px;
            }

            /* Адаптация проектов */
            .projects-section {
                padding: 52px 30px 52px 30px;
            }

            .projects-content {
                gap: 30px;
            }

            .project-item {
                width: 300px;
                height: 360px;
            }

            .project-text {
                font-size: 28px;
            }

            /* Адаптация команды */
            .team-section {
                padding: 52px 30px 52px 30px;
            }

            .team-text {
                font-size: 28px;
                margin-bottom: 50px;
            }

            .team-buttons {
                flex-direction: column;
                align-items: center;
                gap: 30px;
                max-width: 500px;
            }

            .team-button {
                flex: 0 0 auto;
                width: 100%;
                max-width: 500px;
            }

            /* Адаптация медиа */
            .media-section {
                padding: 52px 30px 52px 30px;
            }

            .media-cards {
                gap: 30px;
            }

            .media-card {
                width: 320px;
                height: 260px;
                padding: 15px;
            }

            .card1-image {
                width: 290px;
                height: 90px;
            }

            .card2-image {
                width: 240px;
                height: 130px;
            }

            .card3-image {
                width: 244px;
                height: 130px;
            }

            .card-text {
                font-size: 20px;
            }

            .video-container {
                width: 700px;
                height: 394px;
            }

            .carousel-arrow {
                width: 70px;
                height: 70px;
            }

            /* Адаптация партнеров */
            .partners-section {
                padding: 52px 30px 52px 30px;
            }

            .awards-section {
                padding: 52px 30px 52px 30px;
            }

            .partners-text {
                font-size: 18px;
                margin: 60px auto 50px;
            }

            .logos-container {
                gap: 50px;
                margin-bottom: 70px;
            }

            .logos-row {
                gap: 50px;
            }

            .awards-photo-container {
                width: 700px;
                height: 394px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 52px 20px 0 20px;
            }

            .section-title {
                font-size: 40px;
                margin-bottom: 50px;
            }

            /* Центрирование текста для мобильных */
            .about-text {
                text-align: center;
                margin-right: 0;
            }

            .date-line {
                font-size: 24px;
                margin-bottom: 30px;
                text-align: center;
            }

            .paragraph {
                font-size: 16px;
                margin-bottom: 30px;
                text-align: center;
            }

            .stats-title {
                font-size: 24px;
                margin-bottom: 30px;
                text-align: center;
            }

            .stat-item {
                gap: 20px;
                min-height: 120px;
                justify-content: center;
            }

            .stat-line {
                height: 120px;
            }

            .stat-number {
                font-size: 70px;
                text-align: center;
            }

            .stat-description {
                font-size: 20px;
                text-align: center;
            }

            .stats-container {
                gap: 30px;
            }

            /* Адаптация проектов */
            .projects-section {
                padding: 52px 20px 52px 20px;
            }

            .projects-content {
                gap: 25px;
            }

            .project-item {
                width: 280px;
                height: 340px;
            }

            .project-text {
                font-size: 26px;
            }

            /* Адаптация команды */
            .team-section {
                padding: 52px 20px 52px 20px;
            }

            .team-text {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .team-button {
                height: 70px;
                font-size: 26px;
                padding: 0 25px;
            }

            .button-arrow {
                width: 50px;
                height: 50px;
            }

            /* Адаптация медиа */
            .media-section {
                padding: 52px 20px 52px 20px;
            }

            .media-intro {
                font-size: 18px;
                margin-bottom: 40px;
            }

            .media-cards {
                gap: 25px;
                margin-bottom: 40px;
            }

            .media-card {
                width: 100%;
                max-width: 400px;
                height: 250px;
                padding: 15px;
            }

            .card1-image {
                width: 320px;
                height: 90px;
            }

            .card2-image {
                width: 260px;
                height: 120px;
            }

            .card3-image {
                width: 264px;
                height: 120px;
            }

            .card-text {
                font-size: 20px;
                min-height: 44px;
            }

            .card-text-line {
                height: 22px;
            }

            .video-carousel {
                flex-direction: column;
                gap: 20px;
            }

            .video-container {
                width: 100%;
                max-width: 600px;
                height: 338px;
            }

            .carousel-arrow {
                width: 60px;
                height: 60px;
                transform: rotate(90deg);
            }

            .carousel-arrow:hover {
                transform: rotate(90deg) scale(1.1);
            }

            /* Адаптация партнеров */
            .partners-section {
                padding: 52px 20px 52px 20px;
            }

            .awards-section {
                padding: 52px 20px 52px 20px;
            }

            .partners-text {
                font-size: 16px;
                margin: 50px auto 40px;
            }

            .logos-container {
                gap: 40px;
                margin-bottom: 60px;
            }

            /* На мобильных логотипы идут в 4 ряда по 2 логотипа */
            .logos-row {
                flex-direction: column;
                gap: 40px;
            }

            .awards-carousel {
                flex-direction: column;
                gap: 20px;
            }

            .awards-photo-container {
                width: 100%;
                max-width: 600px;
                height: 338px;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 40px 15px 0 15px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .date-line {
                font-size: 20px;
                margin-bottom: 25px;
            }

            .paragraph {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .stats-title {
                font-size: 20px;
                margin-bottom: 25px;
            }

            .stat-item {
                gap: 15px;
                min-height: 100px;
            }

            .stat-line {
                height: 100px;
            }

            .stat-number {
                font-size: 60px;
            }

            .stat-description {
                font-size: 18px;
            }

            .stats-container {
                gap: 25px;
            }

            /* Адаптация проектов */
            .projects-section {
                padding: 40px 15px 40px 15px;
            }

            .project-item {
                width: 100%;
                max-width: 350px;
                height: 400px;
            }

            .project-text {
                font-size: 24px;
            }

            /* Адаптация команды */
            .team-section {
                padding: 40px 15px 40px 15px;
            }

            .team-text {
                font-size: 22px;
                margin-bottom: 35px;
            }

            .team-button {
                height: 65px;
                font-size: 24px;
                padding: 0 20px;
            }

            .button-arrow {
                width: 45px;
                height: 45px;
            }

            /* Адаптация медиа */
            .media-section {
                padding: 40px 15px 40px 15px;
            }

            .media-intro {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .media-cards {
                gap: 20px;
                margin-bottom: 30px;
            }

            .media-card {
                width: 100%;
                max-width: 350px;
                height: 230px;
                padding: 15px;
            }

            .card1-image {
                width: 280px;
                height: 80px;
            }

            .card2-image {
                width: 230px;
                height: 110px;
            }

            .card3-image {
                width: 234px;
                height: 110px;
            }

            .card-text {
                font-size: 18px;
                min-height: 40px;
            }

            .card-text-line {
                height: 20px;
            }

            .card-arrow {
                width: 35px;
                height: 35px;
            }

            .video-container {
                height: 270px;
            }

            .carousel-arrow {
                width: 50px;
                height: 50px;
            }

            /* Адаптация партнеров */
            .partners-section {
                padding: 40px 15px 40px 15px;
            }

            .awards-section {
                padding: 40px 15px 40px 15px;
            }

            .partners-text {
                font-size: 15px;
                margin: 40px auto 35px;
            }

            .logos-container {
                gap: 35px;
                margin-bottom: 50px;
            }

            .logos-row {
                gap: 35px;
            }

            .awards-photo-container {
                height: 270px;
            }
        }

        @media (max-width: 360px) {
            .section-title {
                font-size: 28px;
            }

            .date-line {
                font-size: 18px;
                margin-bottom: 20px;
            }

            .paragraph {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .stats-title {
                font-size: 18px;
                margin-bottom: 20px;
            }

            .stat-number {
                font-size: 50px;
            }

            .stat-description {
                font-size: 16px;
            }

            .stats-container {
                gap: 20px;
            }

            /* Адаптация проектов */
            .project-text {
                font-size: 22px;
            }

            /* Адаптация команды */
            .team-text {
                font-size: 20px;
                margin-bottom: 30px;
            }

            .team-button {
                height: 60px;
                font-size: 22px;
                padding: 0 15px;
            }

            .button-arrow {
                width: 40px;
                height: 40px;
            }

            /* Адаптация медиа */
            .media-intro {
                font-size: 15px;
            }

            .media-card {
                height: 220px;
                padding: 12px;
            }

            .card1-image {
                width: 250px;
                height: 70px;
            }

            .card2-image {
                width: 210px;
                height: 100px;
            }

            .card3-image {
                width: 214px;
                height: 100px;
            }

            .card-text {
                font-size: 17px;
                min-height: 38px;
            }

            .card-text-line {
                height: 19px;
            }

            .card-arrow {
                width: 30px;
                height: 30px;
            }

            .video-container {
                height: 240px;
            }

            /* Адаптация партнеров */
            .partners-text {
                font-size: 14px;
                margin: 35px auto 30px;
            }

            .logos-container {
                gap: 30px;
                margin-bottom: 40px;
            }

            .logos-row {
                gap: 30px;
            }

            .awards-photo-container {
                height: 240px;
            }
        }

        .stats-title-line1, .stats-title-line2 {
            display: block;
        }

        .team-text-line1, .team-text-line2 {
            display: block;
        }


        /* Стили для видео в контейнере */
        #currentVideo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Стили для изображений наград в контейнере */
        .awards-photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Адаптация для мобильных устройств */
        @media (max-width: 768px) {
            #currentVideo {
                object-fit: contain;
                background-color: #000;
            }

            .awards-photo-container img {
                object-fit: contain;
                background-color: #f0f0f0;
            }
        }

/* Скрытие синей линии в хедере на мобильных */
@media (max-width: 768px) {
    .header-divider {
        display: none;
    }

    .header {
        padding-top: 20px;
        padding-bottom: 20px;
        position: relative;
        z-index: 1000;
        background-color: white;
    }
}

/* Стили для ссылок на документы */
.document-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.document-link {
    font-family: 'Avenir Next', sans-serif;
    font-size: 18px;
    color: #004668;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.document-link:hover {
    color: #0084C4;
}

.document-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0084C4;
}

.document-link:active {
    opacity: 0.8;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .footer {
        height: auto;
        padding: 40px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-contacts {
        max-width: 100%;
        text-align: center;
        order: 1;
    }

    .footer-social {
        order: 2;
    }

    .contact-info {
        font-size: 16px;
        line-height: 1.8;
    }

    /* Контактная информация в одну строку для мобильных */
    .contact-line {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .social-logos {
        gap: 40px;
    }

    .document-links {
        margin-top: 30px;
        gap: 20px;
    }

    .document-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }

    .footer-container {
        padding: 0 20px;
        gap: 30px;
    }

    .footer-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-info {
        font-size: 14px;
    }

    .social-logos {
        gap: 30px;
    }

    .social-logo {
        width: 60px;
        height: 58px;
    }

    .document-links {
        margin-top: 25px;
    }

    .document-link {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .footer-title {
        font-size: 24px;
    }

    .contact-info {
        font-size: 13px;
    }

    .social-logo {
        width: 55px;
        height: 53px;
    }

    .document-link {
        font-size: 14px;
    }
}

/* Для очень маленьких экранов - уменьшаем отступы */
@media (max-width: 320px) {
    .footer {
        padding: 25px 0;
    }

    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }

    .contact-info {
        font-size: 12px;
    }

    .social-logos {
        gap: 25px;
    }
}