* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #eef4f8, #d8e3ea);
  color: #1e2a32;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.content-box {
  max-width: 760px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(30, 42, 50, 0.08);
}

.hero-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d7483;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #163042;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #425866;
  max-width: 620px;
  margin: 0 auto 28px;
}

.cta-button {
  display: inline-block;
  padding: 14px 24px;
  background: #1f5f8b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  background: #17496b;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .content-box {
    padding: 28px 20px;
  }

  .subtitle {
    font-size: 1rem;
  }
}
