body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #222;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 25px;
}

.hero h1 {
  color: #12355b;
  font-size: 34px;
  margin-bottom: 10px;
}

.hero p {
  color: #444;
  font-size: 17px;
}

.card {
  background: white;
  padding: 28px;
  margin-bottom: 22px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 26px;
}

.section-note {
  margin-bottom: 18px;
  color: #333;
}

label {
  display: block;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: bold;
}

select,
button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  box-sizing: border-box;
}

select {
  border: 1px solid #ccc;
  background: white;
}

button {
  margin-top: 22px;
  background: #12355b;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #0d2947;
}

.result-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-index {
  width: 34px;
  height: 34px;
  background: #12355b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.result-number {
  width: 100%;
  padding: 14px;
  background: #f4f7fb;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  font-weight: bold;
  color: #12355b;
}

.disclaimer-card {
  border-left: 5px solid #12355b;
}

.support-mission-card {
  text-align: center;
  border-top: 4px solid #12355b;
}

.support-mission-card p {
  max-width: 720px;
  margin: 0 auto 22px auto;
  color: #333;
}

.support-button {
  display: inline-block;
  background: #12355b;
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.support-button:hover {
  background: #0d2947;
}

.footer {
  text-align: center;
  color: #555;
  padding: 20px 0;
}

@media (max-width: 700px) {
  .result-list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }

  .card {
    padding: 22px;
  }

  .support-button {
    width: 100%;
    box-sizing: border-box;
  }
}
