* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  color: #1f2a37;
  background: #ffffff;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,40,60,0.55) 0%,
    rgba(20,40,60,0.35) 50%,
    rgba(20,40,60,0.55) 100%
  );
}

.hero-content {
  position: relative;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  padding: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  letter-spacing: 1px;
}

.hero h2 {
  font-size: 2rem;
  margin-top: 12px;
  font-weight: 400;
}

.hero p {
  margin: 24px 0 32px;
  font-size: 1.2rem;
  opacity: 0.95;
}

.cta {
  display: inline-block;
  padding: 14px 34px;
  background: #e6f1ff;
  color: #0f172a;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

.cta.light {
  background: #ffffff;
  color: #0f172a;
}

.section {
  padding: 80px 24px;
  max-width: 900px;
  margin: auto;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section p {
  margin-bottom: 16px;
}

.section ul {
  list-style: none;
}

.section ul li {
  margin-bottom: 10px;
}

.section.soft {
  background: #f2f7fc;
}

.section.dark {
  background: #0f172a;
  color: #e5edf7;
  text-align: center;
}

.section.dark p {
  color: #cbd5e1;
}

.quote {
  font-style: italic;
  opacity: 0.8;
}

footer {
  text-align: center;
  padding: 32px;
  background: #0b1220;
  color: #94a3b8;
  font-size: 0.9rem;
}
