body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.App {
  min-height: 100vh;
  background: #f7f7f8;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* Utility */
.nav-btn {
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}
.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-gradient {
  background: linear-gradient(135deg, #1a2f57 0%, #1e3a63 55%, #223e6b 100%);
}

.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #eaf1ff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #1a2f57;
  margin-bottom: 6px;
}

.section-underline {
  width: 60px;
  height: 3px;
  background: #ef7d1c;
  margin-bottom: 24px;
  border-radius: 2px;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eef1f6;
  box-shadow: 0 2px 6px rgba(16,24,40,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16,24,40,0.08);
  border-color: #ef7d1c;
}

.faq-item {
  border: 1px solid #e6e8ee;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.process-card {
  background: #ef7d1c;
  color: white;
  padding: 22px 16px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  background: #d96c15;
}

.btn-primary {
  background: #ef7d1c;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}
.btn-primary:hover {
  background: #d96c15;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

.notice-box {
  background: #fff8e6;
  border: 1px solid #f2d98a;
  border-radius: 8px;
  padding: 16px 18px;
  color: #4a3a10;
  font-size: 14px;
  line-height: 1.55;
}

.input-field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5d9e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
  font-family: inherit;
  box-sizing: border-box;
}
.input-field:focus {
  border-color: #ef7d1c;
  box-shadow: 0 0 0 3px rgba(239,125,28,0.15);
}

.label-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2c3a55;
  margin-bottom: 6px;
}

.helper-text {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.section-badge {
  background: #ef7d1c;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-link {
  color: #cfd6e4;
  transition: color 0.15s ease;
  text-decoration: none;
}
.footer-link:hover { color: #ef7d1c; }

.top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ef7d1c;
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(239,125,28,0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 40;
}
.top-btn:hover { background: #d96c15; transform: translateY(-2px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.5s ease-out both; }

/* details/summary marker removal for FAQ (court-marriage page) */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { list-style: none; }
.faq-item[open] summary svg { transform: rotate(90deg); }
