
        @import url('https://fonts.googleapis.com/css2?family=Bevan:wght@400&family=League+Gothic:wght@400&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, Verdana, sans-serif;
            font-size: 14px;
            line-height: 1.4;
            background: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7') repeat;
            background-color: #fff;
            color: #252525;
        }
        
        .wrapper {
            max-width: 994px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        header {
            height: 326px;
            background: linear-gradient(135deg, #b50606 0%, #dc4325 100%);
            position: relative;
            margin-bottom: 30px;
            box-shadow: 0 2px 7px rgba(0,0,0,0.3);
        }
        
        header .wrapper {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .logo {
            width: 266px;
            height: 206px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bevan', serif;
            font-size: 24px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        nav {
            background: #b50606;
            box-shadow: 0 2px 7px rgba(0,0,0,0.3);
            margin-bottom: 30px;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            min-height: 47px;
        }
        
        nav li {
            background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==') no-repeat left center;
            padding-left: 8px;
        }
        
        nav li:first-child {
            background: none;
            padding-left: 0;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            font-family: 'League Gothic', sans-serif;
            font-size: 18px;
            padding: 10px 12px;
            display: block;
            text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
            transition: color 0.3s ease;
        }
        
        nav a:hover {
            color: #f1ab21;
        }
        
        main {
            min-height: 400px;
            margin-bottom: 40px;
        }
        
        h1 {
            color: #000;
            text-transform: uppercase;
            text-align: center;
            font-size: 24px;
            font-family: 'Bevan', serif;
            margin: 40px 0 30px 0;
            position: relative;
            background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==') center center no-repeat;
            height: 30px;
            line-height: 30px;
        }
        
        h1 span {
            background-color: #fff;
            padding: 0 15px;
        }
        
        article {
            margin-bottom: 40px;
        }
        
        article h2 {
            color: #252525;
            font-size: 20px;
            font-family: 'Bevan', serif;
            text-transform: uppercase;
            margin: 25px 0 20px 0;
            padding-bottom: 5px;
            border-bottom: 2px solid #c7c6c5;
        }
        
        article h3 {
            color: #666;
            font-size: 24px;
            font-family: 'League Gothic', sans-serif;
            text-transform: uppercase;
            margin-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 5px;
        }
        
        article p {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        article ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        article li {
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        article a {
            color: #e75318;
            text-decoration: none;
            border-bottom: 1px solid #f5baa3;
        }
        
        article a:hover {
            border-bottom: 1px solid #e75318;
        }
        
        .transition-section {
            margin: 40px 0;
            padding: 20px;
            background: linear-gradient(to right, #f3f9fb, #e8f4f8);
            border-radius: 10px;
            border-left: 4px solid #e75318;
        }
        
        .transition-section p {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .links-section {
            margin: 40px 0;
            padding: 30px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .links-section h3 {
            color: #252525;
            font-size: 20px;
            font-family: 'League Gothic', sans-serif;
            text-transform: uppercase;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e75318;
        }
        
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px 20px;
            margin-bottom: 30px;
        }
        
        .links-section li {
            background: #fff;
            padding: 12px 15px;
            border-radius: 8px;
            border-left: 3px solid #f3a98c;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .links-section li:hover {
            border-left-color: #e75318;
            transform: translateX(5px);
        }
        
        .links-section a {
            color: #252525;
            text-decoration: none;
            font-size: 14px;
            display: block;
        }
        
        .links-section a:hover {
            color: #e75318;
        }
        
        footer {
            background: #252525;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            margin-top: 60px;
        }
        
        footer .wrapper {
            border-top: 3px solid #f1ab21;
            padding-top: 20px;
        }
        
        footer ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        footer a {
            color: #fff;
            text-decoration: none;
            font-family: 'League Gothic', sans-serif;
            font-size: 16px;
            text-transform: uppercase;
            padding: 0 5px;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: #f1ab21;
        }
        
        @media (max-width: 768px) {
            .wrapper {
                padding: 0 10px;
            }
            
            header {
                height: 200px;
            }
            
            .logo {
                width: 200px;
                height: 120px;
                font-size: 18px;
            }
            
            nav ul {
                flex-direction: column;
                padding: 10px 0;
            }
            
            nav li {
                background: none;
                padding: 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            nav li:last-child {
                border-bottom: none;
            }
            
            nav a {
                padding: 12px 20px;
                font-size: 16px;
            }
            
            h1 {
                font-size: 20px;
                margin: 20px 0;
            }
            
            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            footer ul {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            header {
                height: 150px;
            }
            
            .logo {
                width: 150px;
                height: 80px;
                font-size: 14px;
            }
            
            .links-section {
                padding: 20px 15px;
            }
            
            .transition-section {
                padding: 15px;
            }
        }
    