* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: #0b2a4a;
}

/* TITLE */
.page-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 36px;
}

/* CARD */
.card {
  width: 1100px;
  margin: 36px auto;
  background: #f2fefc;
  border-radius: 20px;
  padding: 40px;
}

.card-title {
  text-align: center;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 26px;
}

.card-titleh3 {
  text-align: center;
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 26px;
}

.card-titleh2 {
  text-align: center;
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 26px;
}

/* TERMS CONTENT */
.terms-content {
  font-size: 14px;
  color: #6b7f99;
  line-height: 22px;
  margin-bottom: 36px;
}

.terms-content strong {
  color: #0b2a4a;
}

/* BUTTON */
.actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

.continue-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #f0b90b, #f8d33d);
  border: none;
  border-radius: 12px;
  color: #0b2a4a;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.continue-btn:disabled {
  background: #f0b90b66;
  color: #0b2a4a;
  cursor: not-allowed;
  opacity: 0.7;
}