/* Policy Page - Figma Design */
:root {
  --policy-bg: #f5f5f8;
  --policy-text: #2c2d2e;
  --policy-muted: #737373;
  --policy-border: #e6e6e6;
  --policy-blue: #005ff9;
}

.policy-page {
  min-height: calc(100vh - 160px);
  padding: 0 0 100px;
  background:
    url("/images/homepage/bg-pattern.png") center 0 / 100% auto no-repeat,
    var(--policy-bg);
}

.policy-container {
  max-width: 1340px;
  padding: 0 50px;
  margin: 0 auto;
}

/* Header section */
.policy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 50px;
}

.policy-header__nav {
  width: 100%;
}

.policy-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Display', Inter, system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--policy-muted);
  max-width: 1240px;
}

.policy-breadcrumbs__link {
  color: var(--policy-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy-breadcrumbs__link:hover {
  color: var(--policy-blue);
}

.policy-hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1240px;
  width: 100%;
}

.policy-title {
  font-family: 'Inter Display', Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--policy-text);
  margin: 0;
}

/* Content section */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-section__title {
  font-family: 'Inter Display', Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--policy-text);
  margin: 0;
}

.policy-section__text {
  font-family: 'Inter Display', Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--policy-text);
  margin: 0;
  white-space: pre-line;
}

/* Responsive */
@media (max-width: 991px) {
  .policy-container {
    padding: 0 20px;
  }

  .policy-title {
    font-size: 40px;
  }

  .policy-section__title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .policy-title {
    font-size: 32px;
  }

  .policy-header {
    gap: 20px;
    padding-bottom: 32px;
  }

  .policy-content {
    gap: 24px;
  }

  .policy-section {
    gap: 12px;
  }

  .policy-section__text {
    font-size: 15px;
  }
}
