* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { background-color: #f4f4f9; color: #333; line-height: 1.6; }
.header-container { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.top-bar { background-color: #FFD60A; color: #D90429; text-align: center; padding: 10px 15px; font-size: 14px; font-weight: bold; }
.header { background-color: #1B4332; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { color: #95D5B2; font-size: 24px; font-weight: bold; text-decoration: none; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.nav { display: flex; gap: 20px; }
.nav a { color: #fff; text-decoration: none; font-size: 16px; transition: color 0.3s; }
.nav a:hover { color: #95D5B2; }
.main-content { max-width: 1000px; margin: 0 auto; padding: 40px 20px; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.05); min-height: 60vh; }
h1, h2, h3 { color: #1B4332; margin-bottom: 15px; }
h1 { font-size: 32px; border-bottom: 3px solid #95D5B2; padding-bottom: 10px; margin-bottom: 25px; }
h2 { font-size: 24px; margin-top: 30px; }
p { margin-bottom: 15px; }
ul, ol { margin-bottom: 15px; padding-left: 20px; }
li { margin-bottom: 8px; }
.main-image { width: 100%; max-height: 400px; object-fit: cover; margin-bottom: 25px; border-radius: 8px; }
.footer { background-color: #1B4332; color: #fff; padding: 40px 5%; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h3 { color: #95D5B2; font-size: 18px; margin-bottom: 15px; border: none; padding: 0; }
.footer-col p, .footer-col a { color: #ccc; font-size: 14px; text-decoration: none; margin-bottom: 10px; display: block; }
.footer-col a:hover { color: #95D5B2; }
.footer-col strong { color: #fff; }
.footer-bottom { flex-basis: 100%; text-align: center; padding-top: 25px; margin-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 13px; color: #ccc; }
.footer-bottom p { margin-bottom: 5px; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav { display: none; width: 100%; flex-direction: column; gap: 10px; padding-top: 15px; }
  .nav.active { display: flex; }
  .footer { flex-direction: column; }
}
