.policy-page {
  padding-top: 140px;
  background-color: var(--bg-dark);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-header {
  margin-bottom: 60px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 40px;
}

.policy-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 16px;
}

.last-updated {
  font-size: 0.95rem;
  color: var(--muted-brown);
  font-weight: 500;
  margin-top: 8px;
  opacity: 0.8;
}

.policy-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--primary-brown);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.policy-section p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.policy-section li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.policy-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-brown);
  border-radius: 50%;
}

.policy-footer {
  margin-top: 20px;
  text-align: center;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-brown);
  font-weight: 700;
  transition: all 0.3s ease;
}

.back-home:hover {
  gap: 16px;
  color: #ffffff;
}

.back-home svg {
  width: 20px;
  height: 20px;
  transform: rotate(270deg);
}

@media (max-width: 768px) {
  .policy-page {
    padding-top: 100px;
  }

  .policy-title {
    font-size: 2.25rem;
  }

  .policy-section h2 {
    font-size: 1.25rem;
  }
}
