/* ========== Header ========== */
.header-bar {
  background: linear-gradient(135deg, #1a5a8a 0%, #2873B4 50%, #1a5a8a 100%);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 28px;
  width: auto;
}

.btn-header {
  background-color: #fff;
  color: #2873B4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.btn-header:hover {
  background-color: #e8f0f8;
}

/* ========== Hero Banner ========== */
.hero-banner {
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Page Content ========== */
.page-content {
  max-width: 480px;
  margin: 0 auto;
  background-color: #fff;
}

/* ========== Sections ========== */
.section {
  padding: 28px 20px;
  border-bottom: 1px solid #eee;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.section-text {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.section-text:last-of-type {
  margin-bottom: 20px;
}

/* ========== Secondary Banner ========== */
.banner-secondary {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Buttons ========== */
.btn-full {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

/* ========== Check List ========== */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.num-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #2873B4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== Bottom CTA ========== */
.section-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gov-card {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.gov-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1a3a5c;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background: #eef2f6;
}

.faq-arrow {
  font-size: 14px;
  color: #2873B4;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 12px 16px 16px;
}

.faq-answer p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ========== Footer ========== */
.footer {
  background-color: #005CA9;
  color: #fff;
  padding: 24px 20px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.footer-sub {
  font-size: 11px;
  color: #a0b4cc;
  line-height: 1.7;
}
