        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #e9ecef;
            color: #2b2b2b;
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .site-wrapper {
            max-width: 1200px;
            width: 100%;
            background-color: #fafafa;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-left: 1px solid #d0d0d0;
            border-right: 1px solid #d0d0d0;
        }

        /* Шапка */
        .header {
            background-color: #2c2c2c;
            padding: 20px 32px;
            display: flex;
            align-items: center;
            border-bottom: 4px solid #b22222;
            flex-wrap: wrap;
            position: relative;
        }

        /* Десктоп навигация */
        .desktop-nav {
            display: flex;
            gap: 28px;
        }
        .desktop-nav a {
            color: #f0f0f0;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: #b22222;
            border-bottom-color: #b22222;
        }

        /* Бургер-иконка (скрыта на десктопе) */
        .burger-icon {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }
        .burger-icon span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #f0f0f0;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        /* Анимация при открытом меню (крестик) */
        .burger-icon.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background-color: #b22222;
        }
        .burger-icon.active span:nth-child(2) {
            opacity: 0;
        }
        .burger-icon.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
            background-color: #b22222;
        }

        /* Мобильное меню (выезжающая панель) */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px;
            width: 260px;
            height: 100vh;
            background-color: #2c2c2c;
            border-left: 3px solid #b22222;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            padding: 100px 30px 30px;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            padding: 12px 0;
            border-bottom: 1px solid #4a4a4a;
            transition: color 0.2s, border-color 0.2s;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .mobile-menu a:hover {
            color: #b22222;
            border-bottom-color: #b22222;
        }
        /* Затемнение фона при открытом меню */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            backdrop-filter: blur(2px);
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Герой (первый блок) */
        .hero {
            position: relative;
            background-image: url('Datas/Images/System/high_background.jpg');
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            padding: 100px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-bottom: 1px solid #b22222;
            isolation: isolate;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
            pointer-events: none;
        }

        .hero h1, .hero .tagline {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 44px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 16px;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        .hero h1 span {
            color: #b22222;
            border-bottom: 3px solid #b22222;
            padding-bottom: 4px;
        }
        
        .hero .tagline {
            font-size: 18px;
            color: #ffffff;
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(44, 44, 44, 0.6);
            padding: 16px 28px;
            border-radius: 60px;
            border: 1px solid #b22222;
            backdrop-filter: blur(4px);
            line-height: 1.6;
        }

        /* Разделитель */
        .separator {
            height: 2px;
            background: linear-gradient(90deg, transparent, #b22222, #b22222, transparent);
            width: 80%;
            margin: 0 auto;
            opacity: 0.4;
        }

        
        
        
        
        
        

        /* Кнопка (оставлена на случай, если понадобится) */
        .cta-button {
            display: inline-block;
            background-color: #b22222;
            color: #ffffff;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            margin-top: 24px;
            border: 2px solid #b22222;
            transition: all 0.2s;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }
        .cta-button:hover {
            background-color: transparent;
            color: #b22222;
            border-color: #ffffff;
        }

        /* Подвал */
        .footer {
            background-color: #2c2c2c;
            padding: 32px;
            border-top: 4px solid #b22222;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: #b0b0b0;
            font-size: 14px;
        }
        .footer .footer-logo-svg {
            width: 200px;
            margin-bottom: 16px;
        }
        .footer .footer-logo-svg rect {
            fill: #2c2c2c;
        }
        .footer .footer-logo-svg text:first-of-type {
            fill: #ffffff;
        }
        .footer .footer-logo-svg line {
            stroke: #b22222;
        }
        .footer .footer-logo-svg text:last-of-type {
            fill: #b22222;
        }
        /* Название в подвале */
        .footer .footer-company-name {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .footer .footer-legal {
            color: #b22222;
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .footer .copyright {
            margin-top: 16px;
            border-top: 1px solid #4a4a4a;
            padding-top: 16px;
            width: 100%;
            max-width: 600px;
            color: #888888;
        }

        /* Медиа-запросы для мобильных */
        @media (max-width: 700px) {
            .header {
                padding: 16px 24px;
            }
            .desktop-nav {
                display: none; /* скрываем десктопное меню */
            }
            .burger-icon {
                display: flex; /* показываем бургер */
            }
            .hero h1 {
                font-size: 32px;
            }
            .hero {
                padding: 60px 16px;
            }
            
        }

        /* Очень маленькие экраны */
        @media (max-width: 400px) {
            .burger-icon {
                width: 26px;
                height: 20px;
            }
        }
		