* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { background-color: #f4f4f9; color: #333; line-height: 1.6; padding-top: 90px; }
.top-bar { background-color: #FFD166; color: red; text-align: center; padding: 6px 10px; position: fixed; top: 0; width: 100%; z-index: 1000; font-weight: bold; font-size: 11px; }
header { background-color: #0B132B; color: white; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; top: 26px; width: 100%; z-index: 999; }
header .logo { font-size: 24px; font-weight: bold; color: #06D6A0; text-decoration: none; }
header nav ul { list-style: none; display: flex; gap: 20px; }
header nav ul li a { color: white; text-decoration: none; font-weight: bold; transition: color 0.3s; }
header nav ul li a:hover { color: #FFD166; }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
main { max-width: 1000px; margin: 40px auto; padding: 30px; background: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
h1 { color: #0B132B; margin-bottom: 20px; font-size: 32px; }
h2 { color: #0B132B; margin-top: 30px; margin-bottom: 15px; border-bottom: 2px solid #06D6A0; padding-bottom: 5px; }
p { margin-bottom: 15px; }
ul, ol { margin-bottom: 15px; padding-left: 20px; }
li { margin-bottom: 5px; }
.hero-image { width: 100%; max-height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
footer { background-color: #0B132B; color: white; padding: 40px 5% 20px; margin-top: 40px; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; max-width: 1200px; margin: 0 auto; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h3 { color: #06D6A0; margin-bottom: 15px; }
.footer-col p, .footer-col ul, .footer-col li { font-size: 14px; color: #ccc; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: #FFD166; }
.footer-bottom { text-align: center; margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 10px; color: #777; line-height: 1.4; }
.footer-bottom p { margin-bottom: 4px; }
.footer-bottom p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  body { padding-top: 110px; }
  .top-bar { font-size: 10px; padding: 5px; }
  header { top: 36px; flex-wrap: wrap; }
  .menu-toggle { display: block; }
  header nav { display: none; width: 100%; margin-top: 15px; }
  header nav.active { display: block; }
  header nav ul { flex-direction: column; gap: 10px; }
  .footer-container { flex-direction: column; }
}
