/* Privacy Policy & Terms of Use pages */
.policy-content {
  padding: 120px 5% 50px;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-surface);
  position: relative;
  min-height: 100vh;
}

body {
  background: var(--color-muted);
}

.policy-content h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.policy-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 3rem;
  padding-top: 1.5rem;
}

.policy-content h2 {
  color: var(--color-secondary);
  margin: 2.5rem 0 1rem;
  font-size: 1.8rem;
  font-family: var(--font-display);
  position: relative;
  padding-left: 1.5rem;
}

.policy-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 2px;
}

.policy-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #444;
  font-size: 1.1rem;
}

.policy-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style: none;
}

.policy-content li {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #444;
  position: relative;
  padding-left: 1.5rem;
}

.policy-content li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.policy-content strong {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-section {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-section p {
  margin-bottom: 0.5rem;
}

.contact-section a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-section a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .policy-content h1 {
    font-size: 2.2rem;
  }

  .policy-content h2 {
    font-size: 1.4rem;
  }
}
