* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background-color: #f4f6f9;
  color: #222;
  line-height: 1.6;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
  color: #fff;
  padding: 30px 15px;
  text-align: center;
}

.site-header h1 {
  font-size: 30px;
  margin-bottom: 6px;
}

/* Navigation */
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.nav a {
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav a:hover {
  background: #eee;
}

/* Container */
.container {
  max-width: 1050px;
  margin: 25px auto;
  padding: 0 15px;
}

/* Sections */
section {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 6px;
}

section h2 {
  color: #4a148c;
  margin-bottom: 10px;
  font-size: 22px;
}

ul, ol {
  padding-left: 22px;
}

/* Notes */
.note {
  margin-top: 12px;
  background: #fff3cd;
  padding: 10px;
  border-left: 4px solid #ff9800;
}

/* Government link */
.gov-link {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.gov-link:hover {
  background: #084298;
}

/* Footer */
.footer {
  text-align: center;
  padding: 18px;
  background: #2d2d2d;
  color: #fff;
  font-size: 14px;
}
.site-header {
  background: linear-gradient(135deg, #6a1b9a, #4a148c);
  padding: 25px 15px;
  color: #fff;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

.header-text h1 {
  font-size: 28px;
  margin-bottom: 4px;
}

.header-text p {
  font-size: 15px;
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 55px;
    height: 55px;
  }

  .header-text h1 {
    font-size: 24px;
  }
}
