/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Full screen image */
.panel {
  height: 100vh;
  width: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  place-items: center;
}

/* Centered light gray card */
.text-box {
  background: rgba(245, 245, 245, 0.95);
  padding: 44px 52px;
  max-width: 720px;
  width: calc(100% - 56px);
  text-align: center;

  border-radius: 14px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Typography */
.text-box h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin-bottom: 16px;
  color: #111;
}

.text-box p {
  font-size: 1.1rem;
  line-height: 1.55;
  color: #333;
}
