/* ---------- Policy ---------- */

.policy-section {
  padding: 110px 0;
  background-color: var(--color-bg);
}

.policy-content {
  max-width: 980px;
  margin: 0 auto;
  color: #ffffff;
}

.policy-header {
  margin-bottom: 72px;
}

.policy-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
  text-wrap: balance;
}

.policy-intro {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
}

.policy-block {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.policy-block:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.policy-block h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.policy-block p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block strong {
  font-weight: 700;
}

.policy-block a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-block a:hover {
  opacity: 0.75;
}

.policy-contact {
  margin-top: 24px;
  padding: 28px;
  border-radius: 20px;
  background-color: var(--color-primary);
}

.policy-contact p {
  margin-bottom: 8px;
  line-height: 1.4;
}

.policy-contact p:last-child {
  margin-bottom: 0;
}

.policy-table-wrap {
  width: 100%;
  margin-top: 32px;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--color-primary);
}

.policy-table th,
.policy-table td {
  padding: 20px 22px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.policy-table th {
  font-weight: 700;
  background-color: var(--color-secondary);
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 72px 0;
  }

  .policy-header {
    margin-bottom: 48px;
  }

  .policy-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .policy-intro {
    font-size: 1rem;
    line-height: 1.6;
  }

  .policy-block {
    padding: 34px 0;
  }

  .policy-block h3 {
    margin-bottom: 18px;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .policy-block p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .policy-contact {
    padding: 22px;
    border-radius: 16px;
  }

  .policy-table th,
  .policy-table td {
    padding: 16px;
    font-size: 0.95rem;
  }
}