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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fdfdfd;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-wrapper {
  background: rgba(15, 23, 42, 0.92);
  padding: 2.5rem 3rem;
  border-radius: 1.25rem;
  max-width: 900px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.7),
    0 0 0 1px rgba(148, 163, 184, 0.2);
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 1.25rem;
  background-image:
    linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(129, 140, 248, 0.7)),
    url("https://images.unsplash.com/photo-1526498460520-4c246339dccb?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.35);
}

.hero-text h1 {
  margin-bottom: 0.75rem;
}

.hero-text p {
  color: #cbd5f5;
}

@media (max-width: 720px) {
  .page-wrapper {
    padding: 2rem 1.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }
}
