.policy-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: inset 0 1px 20px rgba(255, 255, 255, 0.04);
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--color-border);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  width: 38%;
  color: var(--color-text-primary);
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  background: rgba(212, 175, 55, 0.06);
}

.info-table td {
  color: var(--color-text-secondary);
}

.info-table a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.info-table a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.policy-section strong {
  color: var(--color-text-primary);
}

@media (max-width: 600px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }
}
