        /* Базовые стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

		:root {
            --primary-color: #d40000;
            --primary-dark: #b30000;
            --text-color: #333;
            --bg-color: #f9f9f9;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 5px; 15px;
        }
        
        /* Шапка с адаптивным меню */
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 10px 0;
            border-bottom: 3px solid blue;
            position: relative;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: center;
            align-items: center;
			height: 20px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            z-index: 1002;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text h1 {
            font-size: 20px;
            color: #d40000;
            margin-bottom: 0;
        }
        
        /* Бургер-меню для мобильных */
        .burger-menu {
            display: none;
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
            z-index: 1003;
        }
        
        .burger-menu span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger-menu span:nth-child(1) {
            top: 0;
        }
        
        .burger-menu span:nth-child(2),
        .burger-menu span:nth-child(3) {
            top: 10px;
        }
        
        .burger-menu span:nth-child(4) {
            top: 20px;
        }
        
        .burger-menu.active span:nth-child(1),
        .burger-menu.active span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }
        
        .burger-menu.active span:nth-child(2) {
            transform: rotate(45deg);
        }
        
        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        /* Основное меню */
        .main-menu {
            display: flex;
            list-style: none;
            transition: all 0.3s;
        }
        
        .main-menu > li {
            position: relative;
        }
        
        .main-menu > li > a {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .main-menu > li > a:hover {
            color: #d40000;
            background-color: #f5f5f5;
        }
        
        .menu-icon {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* Подменю */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            min-width: 200px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            border-radius: 0 0 5px 5px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            transform: translateY(10px);
            z-index: 1001;
        }
        
        .main-menu > li:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .submenu li {
            border-bottom: 1px solid #eee;
        }
        
        .submenu li:last-child {
            border-bottom: none;
        }
        
        .submenu li a {
            display: block;
            padding: 10px 15px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .submenu li a:hover {
            background-color: #f5f5f5;
            color: #d40000;
            padding-left: 20px;
        }
        /* Индикатор подменю */
        .has-submenu > a::after {
            content: '▾';
            margin-left: 8px;
            font-size: 12px;
        }        
        /* Мобильное меню */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: #fff;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            padding: 70px 20px 20px;
            overflow-y: auto;
            transition: right 0.3s ease;
            z-index: 1001;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-list {
            list-style: none;
        }
        
        .mobile-menu-list > li {
            border-bottom: 1px solid #eee;
        }
        
        .mobile-menu-list > li > a {
            display: flex;
            align-items: center;
            padding: 12px 0;
            color: #333;
            text-decoration: none;
            font-weight: 600;
        }
        
        .mobile-submenu {
            display: none;
            padding-left: 15px;
            list-style: none;
        }
        
        .mobile-submenu li a {
            display: block;
            padding: 10px 0;
            color: #555;
            text-decoration: none;
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Основной контент */
        .main-container {
            display: flex;
		/*	padding: 15px;*/
			margin-left: 20px;
        }
        
        .content {
            flex: 0 0 75%;
            padding-right: 20px;
        }
        
        .news-sidebar {
            flex: 0 0 25%;
        }
        
        /* Баннер */
        .banner {
            height: 400px;
            background-image: url('aikido-banner1.jpg');
            background-size: cover;
            background-position: top;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin-bottom: 30px;
        }
        
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
            padding: 20px;
            max-width: 800px;
        }
        
        .banner h2 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .banner p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #d40000;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #b30000;
        }
        
        /* Блоки-ссылки */
        .quick-links {
            padding: 30px 0;
        }
        
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .link-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .link-card:hover {
            transform: translateY(-5px);
        }
        
        .link-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        
        .link-card-content {
            padding: 15px;
        }
        
        .link-card h3 {
            color: #d40000;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .link-card p {
            font-size: 14px;
            color: #666;
        }
        
        /* О федерации */
        .about {
            padding: 40px 0;
            background-color: #fff;
        }
        
        .about h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 32px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        
        /* Новостная лента в сайдбаре */
        .news-sidebar {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-top: 30px;
        }
        
        .sidebar-title {
            font-size: 22px;
            color: #d40000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            text-align: center;
        }
        
        .sidebar-news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .sidebar-news-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .sidebar-news-title {
            font-size: 16px;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .sidebar-news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .sidebar-news-title a:hover {
            color: #d40000;
        }
        
        .sidebar-news-excerpt {
            font-size: 14px;
            color: #666;
        }
        
        .all-news-link {
            display: block;
            text-align: center;
            margin-top: 15px;
            color: #d40000;
            font-weight: 600;
            text-decoration: none;
        }
        
        .all-news-link:hover {
            text-decoration: underline;
        }
        
        /* Подвал */
        footer {
            background-color: #222;
            color: #fff;
            padding: 30px 0 15px;
            margin-top: 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            color: #d40000;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 8px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }
        
        .footer-column ul li a:hover {
            color: #fff;
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-links a {
            color: #fff;
            font-size: 18px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #444;
            color: #888;
            font-size: 13px;
        }

        /* Дополнительные стили для страницы философии */
        .philosophy-page {
            padding: 50px 0;
        }
        
        .philosophy-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .philosophy-header h1 {
            font-size: 36px;
            color: #d40000;
            margin-bottom: 20px;
        }
        
        .philosophy-header p {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .philosophy-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .philosophy-card {
            flex: 1 1 300px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            padding: 30px;
            transition: transform 0.3s;
        }
        
        .philosophy-card:hover {
            transform: translateY(-5px);
        }
        
        .philosophy-card h2 {
            color: #d40000;
            margin-bottom: 15px;
            font-size: 24px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .philosophy-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #d40000;
        }
        
        .philosophy-card p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .philosophy-image {
            text-align: center;
            margin: 30px 0;
        }
        
        .philosophy-image img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .quote-block {
            background: #f5f5f5;
            border-left: 4px solid #d40000;
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            font-size: 18px;
        }
        
        .quote-author {
            text-align: right;
            font-weight: bold;
            margin-top: 10px;
            color: #555;
        }
        
        /* Дополнительные стили для страницы история */		
        .timeline-container {
            width: 100%;
            overflow-x: auto;
            padding-bottom: 20px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) #f1f1f1;
        }
        
        .timeline-container::-webkit-scrollbar {
            height: 8px;
        }
        
        .timeline-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        .timeline-container::-webkit-scrollbar-thumb {
            background-color: var(--primary-color);
            border-radius: 4px;
        }
        
        .history-scroll {
            display: inline-flex;
            min-width: 100%;
            padding: 10px 0;
        }
        
        .year-column {
			min-width: 320px;
			width: 320px;
			margin-right: -30px; /* Уменьшил отступ между колонками */
			border-radius: 8px;
			padding: 15px;
			box-shadow: 0 3px 10px rgba(0,0,0,0.1);
			transition: transform 0.3s ease;
			position: relative;
			flex-shrink: 0;
		}
        
/*        .year-column:hover {
            transform: translateY(-5px);
        }*/
        
        /* Стиль для заголовка года с стрелкой */
		.year-header {
			color: white;
			padding: 15px 40px 15px 20px;
			text-align: center;
			font-size: 20px;
			font-weight: bold;
			border-radius: 6px;
			margin: -15px -15px 15px -15px;
			position: relative;
			overflow: visible;
			clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
			z-index: 10; /* Базовый z-index */
		}
        
/*        .year-2019 { background-color: #e0f7fa; border-left: 4px solid #00bcd4; }*/
        .year-2020 { background-color: #efebe9; border-left: 4px solid #795548;}
        .year-2021 { background-color: #ffebee; border-left: 4px solid #f44336;}
        .year-2022 { background-color: #e8f5e9; border-left: 4px solid #4caf50;}
        .year-2023 { background-color: #e3f2fd; border-left: 4px solid #2196f3;}
        .year-2024 { background-color: #fff8e1; border-left: 4px solid #ffc107;}
        .year-2025 { background-color: #f3e5f5; border-left: 4px solid #9c27b0;}

/*        .header-year-2019 { background-color: #00bcd4; }*/
        .header-year-2020 { background-color: #795548; z-index: 6;}
        .header-year-2021 { background-color: #f44336; z-index: 5;}
        .header-year-2022 { background-color: #4caf50; z-index: 4;}
        .header-year-2023 { background-color: #2196f3; z-index: 3;}
        .header-year-2024 { background-color: #ffc107; z-index: 2;}
        .header-year-2025 { background-color: #9c27b0; z-index: 1;}
        
        .event-card {
			width: 260px;
            background: white;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-left: 3px solid var(--primary-color);
            position: relative;
        }
        
        .event-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }
        
        .event-title {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        
        .event-title::before {
            content: "•";
            color: var(--primary-color);
            font-size: 24px;
            margin-right: 8px;
        }
        
        .event-description {
            margin-bottom: 0;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .scroll-btn {
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .scroll-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
            gap: 15px;
        }
        
        .stat-item {
            background: #f5f5f5;
            padding: 25px 20px;
            border-radius: 8px;
            min-width: 150px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            flex: 1;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            background: white;
        }
        
        .stat-item h3 {
            color: var(--primary-color);
            margin-top: 0;
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }
        
        .milestone {
            text-align: center;
            margin: 10px 0;
            padding: 20px;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .milestone::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-color);
        }
        
        .milestone h2 {
            color: var(--primary-color);
            margin-top: 0;
        }
		
        @media (max-width: 768px) {
            .burger-menu {
                display: block;
            }
            
            .main-menu {
                display: none;
            }
            
            .banner {
                height: 300px;
            }
            
            .banner h2 {
                font-size: 28px;
            }
            
            .banner p {
                font-size: 16px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-top: 20px;
            }
            .year-column {
                min-width: 270px;
                width: 270px;
            }
            
            .year-header {
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            }
            
            .year-header::after {
                display: none;
            }
            
            .event-card::after {
                display: none;
            }
            
            .history-header h1 {
                font-size: 28px;
            }
            
            .stat-item {
                min-width: 120px;
                padding: 15px 10px;
            }
            
            .stat-item h3 {
                font-size: 24px;
            }
            .philosophy-header h1 {
                font-size: 28px;
            }
            
            .philosophy-header p {
                font-size: 16px;
            }
            
            .philosophy-card {
                flex: 1 1 100%;
            }
		}
        
        @media (max-width: 480px) {
            .banner {
                height: 250px;
            }
            
            .banner h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }
            
            .banner p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .logo img {
                height: 40px;
            }
            
            .logo-text h1 {
                font-size: 18px;
            }
            .container {
                padding: 10px;
            }
            
            .year-column {
                min-width: 240px;
                width: 240px;
                margin-right: 15px;
            }
            
            .controls {
                gap: 10px;
            }
            
            .scroll-btn {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
		
        @media (max-width: 992px) {
            .main-container {
                flex-direction: column;
            }
            
            .content {
                padding-right: 0;
            }
            
            .news-sidebar {
                margin-top: 20px;
            }
        }