body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HERO */
.hero {
  background: url('your-image.jpg') no-repeat center/cover;
  color: white;
  padding: 100px 40px;
}

.hero-content {
  max-width: 500px;
}

/* SECTION 2 */
.choices {
  background: white;
  text-align: center;
  padding: 60px 20px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

/* SECTION 3 */
.why {
  background: #0d2b5c;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: red;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  margin-top: 10px;
}

.big {
  padding: 18px 30px;
}