* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: #172033;
  background: #f5f6f7;
}

.page {
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.card {
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  text-align: center;
  padding: 38px 30px 34px;
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.sj-logo {
  display: block;
  width: 150px;
  max-width: 45vw;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 10px;
}

.eyebrow {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #687184;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 400;
}

p {
  max-width: 610px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.intro {
  font-size: 1.15rem;
}

.divider {
  width: 72px;
  height: 1px;
  background: #d6d9df;
  margin: 26px auto;
}

.small-heading {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #687184;
}

.button {
  display: inline-block;
  margin: 10px auto 24px;
  padding: 13px 28px;
  border-radius: 999px;
  background: #071f45;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(7, 31, 69, 0.22);
}

.be-logo {
  display: block;
  width: 155px;
  max-width: 42vw;
  height: auto;
  margin: 0 auto;
}

footer {
  height: 48px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: #687184;
}

@media (max-width: 560px) {
  .page {
    align-items: flex-start;
    padding-top: 22px;
  }

  .card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .sj-logo {
    width: 118px;
    margin-bottom: 20px;
  }

  .be-logo {
    width: 125px;
  }

  p {
    font-size: 0.98rem;
  }
}
