* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1f2a44, #2c3e66);
  color: #fff;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ffd27d;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 15px;
}

.hero-note {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: #ffd27d;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.cta-button:hover {
  background: #ffbf4a;
}

/* TRUST */
.trust {
  padding: 60px 20px;
}

.trust h2 {
  margin-bottom: 20px;
}

.trust ul {
  list-style: none;
}

.trust li {
  margin: 10px 0;
}

/* HOW */
.how {
  background: #ffffff;
  padding: 60px 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.step {
  background: #eef1f7;
  padding: 15px;
  border-radius: 6px;
}

/* PROBLEMS */
.problems {
  padding: 60px 20px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.problem-list span {
  background: #ffffff;
  padding: 15px;
  border-radius: 6px;
}

/* PRIVACY */
.privacy {
  background: #1f2a44;
  color: #fff;
  padding: 60px 20px;
}

.secondary {
  margin-top: 20px;
}

/* START */
.start {
  padding: 60px 20px;
}
.form-section {
  padding: 60px 20px;
  background: #ffffff;
}

.birth-form {
  max-width: 500px;
  margin: auto;
  text-align: left;
  background: #f8f9fb;
  padding: 30px;
  border-radius: 8px;
}

.birth-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.birth-form input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.birth-form small {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 13px;
}

.privacy-note {
  margin: 20px 0;
  font-size: 14px;
  color: #444;
}
.problem-section {
  padding: 60px 20px;
  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.problem-card {
  display: block;
  text-decoration: none;
  background: #f8f9fb;
  color: #222;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.problem-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.problem-card:hover {
  border-color: #ffd27d;
  transform: translateY(-4px);
  background: #fff;
}
.payment-section {
  padding: 60px 20px;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.price-card {
  background: #f8f9fb;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid transparent;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin: 15px 0;
}

.price-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.price-card li {
  margin: 8px 0;
  font-size: 14px;
}

.highlight {
  border-color: #ffd27d;
  background: #fff;
}

.payment-note {
  margin-top: 30px;
  font-size: 14px;
  color: #444;
}
