.policy-page {
  background: var(--background);
  padding: 80px 24px;
}

.policy-page .policy-page-container {
  max-width: 1600px;
  margin: 0 auto;
}

.policy-page .policy-page-header {
  margin-bottom: 32px;
}

.policy-page .policy-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 32px;
}

.policy-page .policy-page-header p {
  font-size: 18px;
  line-height: 1.625;
  color: rgba(59, 46, 42, 0.8);
}

.policy-page .policy-page-content {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 32px;
}

.policy-page .policy-page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
}

.policy-page .policy-page-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.policy-page .policy-page-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted-foreground);
  display: grid;
  gap: 16px;
  line-height: 1.6;
}

.policy-page .policy-page-text {
  display: grid;
  gap: 16px;
}

.policy-page-content a {
  color: var(--primary);
}

.policy-page .policy-page-emphasis {
  font-weight: 500;
  color: var(--foreground);
}

.policy-page .policy-page-table {
  background: #F7F3EF;
  border-radius: 16px;
  border: 1px solid rgba(195, 162, 122, 0.2);
  overflow: hidden;
}

.policy-page .policy-page-table table {
  width: 100%;
  border-collapse: collapse;
}

.policy-page .policy-page-table td {
  padding: 12px 16px;
  font-size: 14px;
}

.policy-page .policy-page-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(195, 162, 122, 0.2);
}

.policy-page .policy-page-table table ul {
  color: var(--foreground);
}

@media (max-width: 1710px) {
  .policy-page .policy-page-container {
    max-width: 1200px;
  }
}

@media (max-width: 1090px) {
  .policy-page {
    padding: 48px 16px 24px;
  }
  .policy-page .policy-page-container {
    max-width: 100%;
  }
  .policy-page .policy-page-content {
    padding: 24px;
  }
}
