.policy-page {
  min-height: 100vh;
  padding: 34px 14px 70px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 119, 255, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #172033;
}

.policy-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e6ff;
  border-radius: 24px;
  padding: 32px 34px;
  margin-bottom: 22px;
  box-shadow: 0 24px 60px rgba(0, 119, 255, 0.12);
}

.policy-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: #edf5ff;
  border-radius: 50%;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: #edf5ff;
  color: #0077ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.policy-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 34px;
  line-height: 1.15;
  color: #172033;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.policy-hero p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  font-size: 14px;
  line-height: 1.8;
  color: #6b7a90;
  margin: 0;
}

.policy-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #d7e6ff;
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.policy-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d7e6ff;
  border-radius: 20px;
  padding: 24px;
  transition: 0.25s ease;
}

.policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 119, 255, 0.12);
  border-color: #0077ff;
}

.policy-card.full {
  grid-column: 1 / -1;
}

.policy-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: #edf5ff;
  color: #0077ff;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.policy-card h2 {
  font-size: 20px;
  color: #172033;
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.policy-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7a90;
  margin: 0;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff, #f7fbff);
}

.support-strip {
  margin-top: 18px;
  padding: 15px 16px;
  background: #edf5ff;
  border: 1px solid #d7e6ff;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  transition: 0.25s ease;
}

.support-strip:hover {
  background: #0077ff;
}

.support-strip strong {
  color: #172033;
  font-size: 14px;
}

.support-strip span {
  color: #0077ff;
  font-size: 14px;
  font-weight: 900;
}

.support-strip:hover strong,
.support-strip:hover span {
  color: #ffffff;
}

@media (max-width: 650px) {
  .policy-page {
    padding: 24px 12px 50px;
  }

  .policy-hero {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .policy-hero h1 {
    font-size: 26px;
  }

  .policy-box {
    grid-template-columns: 1fr;
    border-radius: 20px;
    padding: 14px;
  }

  .policy-card {
    padding: 20px;
  }

  .support-strip {
    flex-direction: column;
  }
}
