/* Privacy Policy Specific Styling */

.policy-section {
  padding-top: 140px; /* Space for fixed navbar */
  padding-bottom: 60px;
}

.policy-container {
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-glass);
}

.policy-header .app-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.policy-header .last-updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.policy-body {
  color: var(--text-primary);
  line-height: 1.8;
}

.policy-body h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--accent-teal);
}

.policy-body p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.policy-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.policy-body li {
  margin-bottom: 8px;
}

.text-link {
  color: var(--accent-teal);
  text-decoration: none;
  transition: opacity 0.2s;
}

.text-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .policy-container {
    padding: 24px;
  }
  .policy-header .section-title {
    font-size: 2rem;
  }
  .policy-body h2 {
    font-size: 1.25rem;
  }
}
