        :root {
            --primary-color: #337ab7;
            --accent-color-1: #5b4de9;
            --accent-color-2: #5b3185;
            --accent-color-3: #58F7D8;
            --light-color: #ffffff;
            --dark-color: #333333;
            --text-color: #337ab7;
            --gray-light: #f8f9fa;
            --heading-color: #5b4de9;
        }
        
        /* ==================== ОСНОВНЫЕ СТИЛИ MOS.RU ==================== */
        
        /* Шрифты и текст */
        body {
            font-family: "Segoe UI", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 400;
            color: var(--text-color);
            background-color: var(--light-color);
        }
        
        /* Система заголовков mos.ru */
        h1, h2, h3, h4, h5, h6,
        .hero-title,
        .section-title,
        .card-title,
        .navbar-brand {
            font-family: "Segoe UI", Arial, sans-serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--heading-color);
        }
        
        h1, .hero-title {
            font-size: 48px;
        }
        
        h2, .section-title {
            font-size: 32px;
        }
        
        h3 {
            font-size: 24px;
        }
        
        h4 {
            font-size: 20px;
        }
        
        h5 {
            font-size: 18px;
        }
        
        /* Отступы mos.ru */
        .section {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .container > * + * {
            margin-top: 24px;
        }
        
        .row.g-4 > [class*="col-"] {
            margin-bottom: 24px;
        }
        
        /* ==================== АДАПТАЦИЯ СУЩЕСТВУЮЩИХ СТИЛЕЙ ==================== */
        
        /* Навигация с прилипанием */
        .navbar {
            background-color: var(--light-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding-top: 16px;
            padding-bottom: 16px;
            transition: all 0.3s;
        }
        
        .navbar.sticky {
            position: sticky;
            top: 0;
            z-index: 1020;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-size: 20px;
        }
        
        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 8px;
            position: relative;
            font-size: 16px;
        }
        
        .nav-link:hover {
            color: var(--accent-color-1) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: var(--accent-color-2);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        /* Герой-баннер */
        .hero-section {
            background:/* linear-gradient(rgba(57, 49, 133, 0.4), rgba(91, 77, 233, 0.1)), */
                        url('/assets/img/fon.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            min-height:65vh; /* на всю высоту 85vh */
            display: flex;
        }


        /* Заглушка логотипа */
        .logo-placeholder {
            display: inline-block;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .logo-icon i {
            font-size: 40px;
            color: var(--accent-color-1);
            
        }


        
        .hero-title {
        	text-transform: uppercase;
            margin-bottom: 24px;
            color: white !important;
            text-shadow: 2px 3px 0px #898999;
        }

		.hero-text {
            text-shadow: 1px 2px 0px #898999;
        }
        
        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 800px;
            color: white;
            line-height: 1.5;
        }
        
        .btn-primary-custom {
            background-color: var(--accent-color-2);
            border-color: var(--accent-color-2);
            color: white;
            font-weight: 600;
            font-size: 16px;
            padding: 12px 32px;
            border-radius: 50px;
            margin-right: 16px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #4a2870;
            border-color: #4a2870;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        .btn-outline-custom {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            font-weight: 600;
            font-size: 16px;
            padding: 12px 32px;
            border-radius: 50px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
        
        .btn-outline-custom:hover {
            background-color: white;
            color: var(--accent-color-1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Карточки */
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background-color: var(--light-color);
            padding: 24px;
            margin-bottom: 24px;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .card-icon {
            font-size: 40px;
            color: var(--accent-color-1);
            margin-bottom: 20px;
        }
        
        .news-card {
            padding: 0;
        }
        
        .news-card img {
            height: 311px;
            object-fit: cover;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }
        
        .news-card .card-body {
            padding: 24px;
        }
        
        .news-date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            display: block;
            margin-bottom: 12px;
        }
        
        /* Блок сотрудничества */
        .cooperation-section {
            background-color: var(--gray-light);
        }
        
        /* Шаги присоединения */
        .step-icon {
            width: 70px;
            height: 70px;
            background-color: var(--accent-color-2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step-container .text-center {
            padding: 20px;
        }
        
        .stat-number {
            color: var(--accent-color-1);
            font-weight: 700;
            font-size: 48px;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        /* Футер */
        footer {
            background-color: var(--accent-color-2);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            color: white;
            font-size: 20px;
            margin-bottom: 24px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--accent-color-3);
        }
        
        .footer-links p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
            font-size: 16px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--accent-color-1);
            transform: translateY(-5px);
            color: white;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }
        
        /* Акцентные элементы */
        .accent-bg-3 {
            background-color: var(--accent-color-3);
            padding: 24px;
            border-radius: 12px;
        }
        
        .accent-text-1 {
            color: var(--accent-color-1) !important;
        }


        .highlight-gradient {
    background: linear-gradient(120deg, #FCEA01 0%, #FCEA01 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
    padding: 0 4px;
}

    /* Адаптивные отступы для текста */
    @media (max-width: 768px) {
        .hero-section .mt-5 {
            margin-top: 3rem !important;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
        }
        
        .logo-icon i {
            font-size: 30px;
        }
    }        
        
        /* Адаптивность */
        @media (max-width: 768px) {
            h1, .hero-title {
                font-size: 32px;
            }
            
            h2, .section-title {
                font-size: 28px;
            }
            
            h3 {
                font-size: 22px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .hero-section {
                padding: 80px 0 60px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: 12px;
            }
            
            .navbar {
                padding-top: 12px;
                padding-bottom: 12px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Дополнительные утилиты */
        .text-lead {
            font-size: 20px;
            line-height: 1.5;
            margin-bottom: 24px;
        }
        
        .mb-24 {
            margin-bottom: 24px;
        }
        
        .mt-24 {
            margin-top: 24px;
        }
        
        .mb-40 {
            margin-bottom: 40px;
        }

        .highlight-bg-custom {
    background-color: var(--accent-color-2); /* Бирюзовый #58F7D8 */
    padding: 6px 10px;
    border-radius: 6px;
    display: inline;
}