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

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 58, 32, 0.1), transparent 32%),
    radial-gradient(
      circle at bottom right,
      rgba(37, 58, 32, 0.07),
      transparent 32%
    ),
    #f6f7f3;
  color: #1f2937;
  min-height: 100vh;
}

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

.card {
  width: 100%;
  max-width: 740px;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #eceee8;
  text-align: center;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.04);
}

.top-bar {
  height: 7px;
  background: linear-gradient(90deg, #253a20, #607851);
}

.logo {
  display: block;
  width: 200px;
  margin: 36px auto 28px;
}

h1 {
  width: 86%;
  margin: 0 auto;
  font-size: 2.08rem;
  line-height: 1.18;
  font-weight: 800;
  color: #1b2418;
  letter-spacing: -0.04em;
}

.subtitle {
  width: 84%;
  margin: 22px auto 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #66705e;
}

.info-box {
  width: 84%;
  margin: 34px auto 0;
  padding: 24px 28px;
  background: #fbfcfa;
  border: 1px solid #e5e9df;
  border-radius: 20px;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: #4f5b49;
  font-size: 0.98rem;
  line-height: 1.45;
}

.info-item:first-child {
  padding-top: 0;
}

.info-item:last-child {
  padding-bottom: 0;
}

.info-item + .info-item {
  border-top: 1px solid #e8ebe4;
}

.line {
  width: 18px;
  height: 3px;
  min-width: 18px;
  border-radius: 999px;
  background: #253a20;
}

.info-item strong {
  color: #253a20;
}

.cta-text {
  width: 84%;
  margin: 34px auto 16px;
  color: #4d5848;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 56px;
  background: linear-gradient(180deg, #2d4726, #253a20);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
  box-shadow: 0 16px 32px rgba(37, 58, 32, 0.26);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(37, 58, 32, 0.34);
}

.footer {
  width: 84%;
  margin: 26px auto 34px;
  color: #8b9385;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .page {
    padding: 16px;
  }

  .card {
    border-radius: 22px;
  }

  .logo {
    width: 165px;
    margin: 30px auto 22px;
  }

  h1 {
    width: 90%;
    font-size: 1.72rem;
  }

  .subtitle,
  .info-box,
  .cta-text,
  .footer {
    width: 90%;
  }

  .info-box {
    margin-top: 28px;
    padding: 20px;
  }

  .info-item {
    align-items: flex-start;
    padding: 13px 0;
    font-size: 0.94rem;
  }

  .line {
    margin-top: 8px;
  }

  .button {
    width: 90%;
  }
}
