/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #f9f9f9; color: #333; line-height: 1.6; }

/* Navbar */
.navbar { background: #00529b; color: white; padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; }
.nav-links { list-style: none; display: flex; gap: 1rem; }
.nav-links a { color: white; text-decoration: none; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle .bar { width: 25px; height: 3px; background: white; }

/* Hero */
.hero { background: white; text-align: center; padding: 4rem 1rem; }
.hero h1 { font-size: 2rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 1.5rem; }
.btn { background: #00529b; color: white; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: 5px; }

/* Sections */
.section { background: white; max-width: 800px; margin: 2rem auto; padding: 1.5rem; border-radius: 5px; }
.section h2 { margin-bottom: 1rem; }
.simple-list { list-style: disc inside; margin-left: 1rem; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
th, td { border: 1px solid #ccc; padding: 0.75rem; text-align: left; }
th { background: #eaf1f8; }

/* FAQ & Contact */
.section h4 { margin-top: 1rem; }
.contact p { margin-bottom: 0.5rem; text-align: center; }

/* Footer */
footer { text-align: center; padding: 1rem; color: #555; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: #00529b; position: absolute; top: 60px; right: 0; width: 200px; padding: 1rem; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: flex; }
}
