body {
  font-family: 'Istok Web', Arial, sans-serif;
  color: #fff;
  padding: 0 clamp(24px, 6vw, 64px);
}

main {
  padding: clamp(120px, 18vh, 160px) 0 clamp(72px, 12vh, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-card {
  width: var(--container-width);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) clamp(22px, 6vw, 64px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.policy-card h1 {
  margin: 0 0 clamp(24px, 4vw, 40px);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.policy-lead {
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 40px);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.policy-outline {
  max-width: 760px;
  margin: 0 auto clamp(20px, 4vw, 48px);
  padding: 18px 20px;
  background: rgba(10, 25, 17, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.policy-outline__title {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.policy-outline__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-outline__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 10, 6, 0.4);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.policy-outline__list a:hover,
.policy-outline__list a:focus-visible {
  background: rgba(9, 44, 26, 0.75);
  border-color: rgba(255, 255, 255, 0.4);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: clamp(20px, 3vw, 32px) 0 0;
  background: rgba(5, 19, 12, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.policy-table caption {
  caption-side: top;
  padding: 16px 20px 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.policy-table th,
.policy-table td {
  padding: 18px 20px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-table th {
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.policy-table td {
  font-size: 0.95rem;
}

.policy-table tr:last-of-type th,
.policy-table tr:last-of-type td {
  border-bottom: none;
}

.policy-steps {
  margin: 0 0 18px;
  padding-left: 20px;
  counter-reset: step;
}

.policy-steps li {
  margin-bottom: 12px;
  padding-left: 6px;
}

.policy-section {
  margin: clamp(24px, 4vw, 40px) auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.policy-section h2 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
}

.policy-section p {
  margin: 0 0 12px;
}

.policy-section ul {
  margin: 0;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 10px;
}

.policy-section a {
  color: #8fd18a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.policy-section a:hover,
.policy-section a:focus-visible {
  color: #b8f0ac;
}

@media (max-width: 720px) {
  body {
    padding: 0 18px;
  }

  .policy-card {
    padding: 28px 22px;
  }

  .policy-outline {
    padding: 16px 18px;
  }

  .policy-outline__list {
    gap: 8px 12px;
  }

  .policy-table,
  .policy-table thead,
  .policy-table tbody,
  .policy-table th,
  .policy-table td,
  .policy-table tr {
    display: block;
  }

  .policy-table thead {
    display: none;
  }

  .policy-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
  }

  .policy-table tr:last-of-type {
    border-bottom: none;
  }

  .policy-table td {
    padding: 8px 0;
    font-size: 0.95rem;
  }

  .policy-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
  }

  .policy-lead {
    font-size: 0.95rem;
  }
}
