        :root {
            --blue: #003366;
            --accent: #004a94;
            --white: #ffffff;
            --light-gray: #f4f7f9;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--blue);
            background: var(--white);
            line-height: 1.6;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 100px;
            background: #fff;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .header-container {
            width: 100%;
            /* Убираем max-width или ставим его ОЧЕНЬ большим, 
       чтобы padding 10% работал как в блоке Hero */
            max-width: 100%;
            padding: 0 10%;
            /* Должно быть в точности как в .hero или .container */

            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo-column {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex-shrink: 0;
        }

        .logo-img {
            height: 45px;
            width: auto;
            display: block;
        }

        .logo-anchor {
            display: block;
            height: 40px;
        }


        /* Ссылка под логотипом, выведенная из потока, чтобы не толкать элементы */
        .back-link-block {
            position: absolute;
            top: 50px;
            left: 0;
            white-space: nowrap;
        }

        .back-to-main {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--blue);
            opacity: 0.5;
            letter-spacing: 0.5px;
            line-height: 1;
        }


        .social-column {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .t-sociallinks__wrapper {
            display: flex !important;
            /* Выстраивает li в ряд */
            flex-direction: row !important;
            /* Направление - горизонтальное */
            list-style: none !important;
            /* Убирает маркеры/точки списка */
            margin: 0 !important;
            padding: 0 !important;
            gap: 12px;
            /* Расстояние между иконками */
            align-items: center !important;
        }

        /* АДАПТИВ ДЛЯ МОБИЛЬНЫХ */
        @media (max-width: 768px) {
            header {
                height: 75px;
            }

            .logo-img,
            .logo-anchor,
            .logo-column {
                height: 32px;
            }

            .logo-column {
                min-width: 120px;
            }

            .back-link-block {
                top: 34px;
            }

            .header-container {
                padding: 0 20px;
            }
        }


        .t-sociallinks__item {
            display: inline-flex !important;
            /* Элементы списка в одну линию */
            margin: 0 !important;
            padding: 0 !important;
            width: 30px;
            /* Фиксируем размер контейнера иконки */
            height: 30px;
        }

        .t-sociallinks__item a {
            display: flex !important;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            width: 100%;
            height: 100%;
        }

        .t-sociallinks__svg {
            display: block !important;
            width: 30px !important;
            height: 30px !important;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        /* Скрываем лишние подчеркивания от ссылок */
        .t-sociallinks__item a svg {
            display: block;
        }

        .t-sociallinks__item a:hover .t-sociallinks__svg {
            transform: translateY(-2px);
            opacity: 0.8;
        }

        @media (max-width: 756px) {
            .t-sociallinks__wrapper {
                gap: 8px !important;
            }
        }




        /* Адаптив для мобильных */
        @media (max-width: 756px) {
            header {
                padding: 10px 5%;
            }

            .logo-img {
                height: 35px;
            }

            /* Чуть меньше лого на смартфонах */
        }


        .logo {
            font-weight: 700;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            color: var(--blue);
        }

        .hero {
            padding: 60px 10% 20px;
            max-width: 1000px;
        }

        h1 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #444;
            max-width: 700px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 40px 10%;
        }

        .widget {
            background: var(--blue);
            color: white;
            padding: 2rem;
            border-radius: 4px;
            text-decoration: none;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 10px 20px rgba(0, 51, 102, 0.1);
            min-height: 200px;
        }

        .widget:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .widget p {
            font-size: 0.9rem;
            opacity: 0.85;
        }

        /* --- ОБНОВЛЕННАЯ СЕКЦИЯ: ДЛЯ КОГО ПОЛЕЗНО --- */
        .audience-section {
            padding: 100px 10%;
            background: #fbfcfd;
        }

        .audience-section h2 {
            font-size: 2.2rem;
            margin-bottom: 60px;
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 800;
            border-left: 10px solid var(--blue);
            padding-left: 30px;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .audience-card {
            background: var(--white);
            padding: 40px 30px;
            border: 1px solid #e1e8ed;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 180px;
        }

        .audience-card:hover {
            border-color: var(--blue);
            box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
            transform: translateY(-5px);
        }

        .audience-card .num {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 900;
            color: #f0f3f5;
            transition: 0.3s;
            z-index: 1;
        }

        .audience-card:hover .num {
            color: #e1e8ed;
            transform: scale(1.1);
        }

        .audience-card p {
            font-size: 1rem;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            line-height: 1.3;
            z-index: 2;
        }

        /* ------------------------------------------- */

        .global-section {
            background: var(--light-gray);
            padding: 60px 10%;
        }

        .global-card {
            background: white;
            border: 2px solid var(--blue);
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            border-radius: 4px;
        }

        footer {
            padding: 3rem 10%;
            font-size: 0.8rem;
            opacity: 0.7;
            border-top: 1px solid #eee;
            text-align: center;
        }

        @media (max-width: 768px) {
            .global-card {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2.2rem;
            }

            .audience-section h2 {
                font-size: 1.6rem;
            }
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 40px;
            /* Управляйте размером логотипа через высоту */
            width: auto;
            /* Ширина подстроится автоматически */
            display: block;
            transition: opacity 0.3s;
        }

        .logo-img:hover {
            opacity: 0.8;
        }

        /* Секция на всю ширину экрана */
        .cta-fullwidth {
            width: 100%;
            background-color: var(--gray);
            /* Светло-серый фон */
            padding: 80px 0;
            margin-top: 60px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        /* Контент внутри, ограниченный по ширине и центрированный */
        .cta-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 10%;
            display: flex;
            flex-direction: column;
            /* Элементы друг под другом */
            align-items: center;
            /* Центрирование по горизонтали */
            text-align: center;
            /* Текст по центру */
        }

        /* Контейнер текста в блоке консультации */
        .cta-text-content h2 {
            /* Уменьшаем заголовок (было 2.2rem или 1.8rem) */
            font-size: 1.5rem;
            color: var(--blue);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-text-content p {
            /* Уменьшаем основной текст (было 1.2rem) */
            font-size: 1rem;
            color: #555;
            max-width: 600px;
            /* Ограничиваем ширину для лучшей читаемости */
            margin: 0 auto 30px;
            /* Центрируем и даем отступ до кнопки */
            line-height: 1.5;
        }

        /* Кнопка */
        .main-button-styled {
            background-color: var(--blue);
            color: var(--white) !important;
            padding: 14px 28px;
            /* Было 20px 40px */
            font-size: 0.85rem;
            /* Было 1rem */
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 25px rgba(0, 51, 102, 0.15);
        }

        .main-button-styled:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 74, 148, 0.25);
        }

        .main-button-styled svg {
            transition: transform 0.3s ease;
        }

        .main-button-styled:hover svg {
            transform: translateX(5px);
        }

        /* Адаптив для мобильных */
        @media (max-width: 768px) {
            .cta-text-content h2 {
                font-size: 0.8rem;
            }

            .cta-fullwidth {
                padding: 50px 0;
            }

            .main-button-styled {
                width: 100%;
                justify-content: center;
            }
        }

        .header-spacer {
            height: 90px;
            /* Высота вашего хедера */
            width: 100%;
        }

        .back-link-reserve {
            position: absolute;
            top: 45px;
            /* Ровно под логотипом */
            left: 0;
            white-space: nowrap;
            height: 15px;
            z-index: 2;
        }

.about-section-alt {
    width: 100%;
    background-color: var(--blue); /* Общий синий фон секции */
    padding: 80px 0;
}

.about-container-alt {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center; /* Центрируем картинку и текст по вертикали */
    gap: 50px; /* Расстояние между картинкой и текстом */
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img-element {
    width: 100%;
    max-width: 500px; /* Ограничиваем ширину картинки */
    height: 500px;    /* Фиксированная высота */
    background-size: cover;
    background-position: center;
    border-radius: 4px; /* Легкое скругление в стиле QuantLex */
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Тень для объема на синем фоне */
}

.about-content-alt {
    flex: 1;
    color: var(--white);
}

.about-label-alt {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.about-content-alt h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content-alt p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    .about-container-alt {
        flex-direction: column;
        text-align: center;
    }
    .about-img-element {
        height: 350px;
        width: 100%;
    }
    .about-content-alt {
        padding-top: 30px;
    }
}


.main-footer {
    /* Принудительно отключаем прозрачность, если она была */
    opacity: 1 !important; 
    
    /* Используем переменную напрямую без примесей */
    background-color: var(--blue) !important; 
    padding: 60px 0;
    color: var(--white);
    width: 100%;
    border-top: none; /* Убираем лишнюю рамку, синий блок сам по себе отличный разделитель */
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10%; /* Тот же отступ, что у Hero и Header */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-copy {
    font-size: 0.85rem;
    /* Делаем чуть тусклее основного белого, чтобы не отвлекать */
    color: rgba(255, 255, 255, 0.6); 
}

.footer-details {
    text-align: right;
    max-width: 500px;
}

.footer-details p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 5px;
    /* Светлый текст с хорошей читаемостью */
    color: rgba(255, 255, 255, 0.9); 
}

.footer-details strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-details {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }
}


.home-page .back-link-reserve{ display: none !important; }


