/* General Reset & Base */ * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background-color: #f4f4f4; } body.no-scroll { overflow: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } a { text-decoration: none; color: inherit; } ul { list-style: none; } /* Header Styles */ .site-header { background-color: #003366; color: #ffffff; padding: 15px 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); position: sticky; top: 0; z-index: 1000; } .site-header .container { display: flex; justify-content: space-between; align-items: center; } .site-header .logo { font-size: 28px; font-weight: bold; color: #FFCC00; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s ease; } .site-header .logo:hover { color: #ffffff; } .main-nav .nav-list { display: flex; } .main-nav .nav-list li { margin-left: 30px; } .main-nav .nav-list a { color: #ffffff; font-weight: 500; font-size: 16px; padding: 5px 0; position: relative; transition: color 0.3s ease; } .main-nav .nav-list a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background-color: #FFCC00; transition: width 0.3s ease; } .main-nav .nav-list a:hover::after, .main-nav .nav-list a.active::after { width: 100%; } .main-nav .nav-list a:hover, .main-nav .nav-list a.active { color: #FFCC00; } .hamburger-menu { display: none; background: none; border: none; cursor: pointer; padding: 10px; position: relative; z-index: 1001; } .hamburger-menu span { display: block; width: 25px; height: 3px; background-color: #ffffff; margin: 5px 0; transition: all 0.3s ease; } /* Footer Styles */ .site-footer { background-color: #003366; color: #ffffff; padding: 40px 0 20px; font-size: 15px; } .site-footer .footer-columns { display: flex; justify-content: space-between; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; } .site-footer .footer-col { flex: 1; min-width: 250px; } .site-footer .footer-col h3 { color: #FFCC00; margin-bottom: 15px; font-size: 18px; } .site-footer .footer-col p { margin-bottom: 10px; color: #cccccc; } .site-footer .footer-col a { color: #ffffff; transition: color 0.3s ease; } .site-footer .footer-col a:hover { color: #FFCC00; } .site-footer .footer-nav-list li { margin-bottom: 8px; } .site-footer .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #cccccc; } /* Responsive Styles */ @media (max-width: 768px) { .site-header .container { padding: 0 15px; } .main-nav { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background-color: rgba(0, 51, 102, 0.95); display: flex; justify-content: center; align-items: center; transition: left 0.4s ease-in-out; z-index: 999; } .main-nav.active { left: 0; } .main-nav .nav-list { flex-direction: column; text-align: center; } .main-nav .nav-list li { margin: 20px 0; } .main-nav .nav-list a { font-size: 24px; padding: 10px 0; } .hamburger-menu { display: block; } .hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .site-footer .footer-columns { flex-direction: column; align-items: center; text-align: center; } .site-footer .footer-col { min-width: unset; width: 100%; margin-bottom: 20px; } }