:root { --primary-color: #0A246A; --secondary-color: #FFD700; --text-light: #f0f0f0; --text-dark: #333; --bg-dark: #1a1a1a; }.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }.site-header { background-color: var(--primary-color); padding: 15px 0; color: var(--text-light); border-bottom: 3px solid var(--secondary-color); }.site-header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }.site-header .logo { font-size: 2.5em; font-weight: bold; color: var(--secondary-color); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; }.site-header .logo:hover { color: var(--text-light); }.site-header .main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 25px; }.site-header .main-nav a { color: var(--text-light); text-decoration: none; font-weight: 600; font-size: 1.1em; padding: 5px 0; position: relative; transition: color 0.3s ease; }.site-header .main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: var(--secondary-color); transition: width 0.3s ease; }.site-header .main-nav a:hover::after, .site-header .main-nav a.active::after { width: 100%; }.site-header .main-nav a:hover, .site-header .main-nav a.active { color: var(--secondary-color); }.auth-buttons { display: flex; gap: 10px; }.btn { display: inline-block; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, color 0.3s ease; }.btn-login { background-color: transparent; color: var(--secondary-color); border: 2px solid var(--secondary-color); }.btn-login:hover { background-color: var(--secondary-color); color: var(--primary-color); }.btn-register { background-color: var(--secondary-color); color: var(--primary-color); border: 2px solid var(--secondary-color); }.btn-register:hover { background-color: var(--text-light); border-color: var(--text-light); }.hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; cursor: pointer; background: none; border: none; padding: 0; z-index: 1000; }.hamburger-menu span { display: block; width: 100%; height: 3px; background-color: var(--secondary-color); border-radius: 3px; transition: all 0.3s ease; }.hamburger-menu.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }.hamburger-menu.active span:nth-child(2) { opacity: 0; }.hamburger-menu.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }.site-footer { background-color: var(--primary-color); color: var(--text-light); padding: 40px 0 20px; border-top: 3px solid var(--secondary-color); }.site-footer .footer-columns { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }.site-footer .footer-col { flex: 1; min-width: 250px; }.site-footer .footer-logo { font-size: 2em; font-weight: bold; color: var(--secondary-color); text-decoration: none; text-transform: uppercase; margin-bottom: 15px; display: block; }.site-footer h3 { font-size: 1.4em; color: var(--secondary-color); margin-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 10px; }.site-footer p { font-size: 0.95em; line-height: 1.6; margin-bottom: 10px; }.site-footer .footer-nav ul { list-style: none; margin: 0; padding: 0; }.site-footer .footer-nav li { margin-bottom: 8px; }.site-footer .footer-nav a { color: var(--text-light); text-decoration: none; font-size: 0.95em; transition: color 0.3s ease; }.site-footer .footer-nav a:hover { color: var(--secondary-color); }.site-footer .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }.site-footer .copyright { font-size: 0.85em; color: rgba(255, 255, 255, 0.7); }.site-footer .contact-info p { margin-bottom: 5px; }.site-footer .contact-info p:last-child { margin-bottom: 0; }@media (max-width: 1024px) { .site-header .main-nav ul { gap: 15px; } .site-header .main-nav a { font-size: 1em; } }.site-header .auth-buttons { margin-left: auto; }.site-header .auth-buttons .btn { margin-left: 10px; }@media (max-width: 768px) { .site-header .container { flex-wrap: nowrap; justify-content: space-between; } .site-header .main-nav { display: none; flex-direction: column; width: 100%; position: absolute; top: 75px; left: 0; background-color: var(--primary-color); padding: 20px 0; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); z-index: 999; } .site-header .main-nav.active { display: flex; } .site-header .main-nav ul { flex-direction: column; text-align: center; gap: 0; } .site-header .main-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .site-header .main-nav li:last-child { border-bottom: none; } .site-header .main-nav a { display: block; padding: 15px 0; } .site-header .auth-buttons { order: 3; margin-top: 15px; width: 100%; justify-content: center; margin-left: 0; } .site-header .hamburger-menu { display: flex; order: 2; } .site-footer .footer-columns { flex-direction: column; align-items: center; text-align: center; } .site-footer .footer-col { min-width: auto; width: 100%; margin-bottom: 20px; } .site-footer .footer-logo { margin-bottom: 10px; } .site-footer h3 { margin-bottom: 15px; } .site-footer .footer-nav ul { padding-left: 0; } .site-footer .footer-nav li { margin-bottom: 5px; } }