/**
 * Policy page specific styles
 */

.hero-section {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-section h1 {
  margin-bottom: 0.5rem;
}

.hero-section .subtitle {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero-section .subtitle-date {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: var(--text-primary);
}

.policy-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.policy-subsection {
  margin-bottom: 1.5rem;
}

.policy-subsection:last-child {
  margin-bottom: 0;
}

.text-content {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.text-content:last-child {
  margin-bottom: 0;
}

.text-important {
  font-weight: 500;
  color: var(--text-primary);
}

.text-note {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

.policy-list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.policy-list li:last-child {
  margin-bottom: 0;
}

.info-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 0.75rem;
}

.info-box h4 {
  margin-top: 0;
}

.info-box p {
  margin-bottom: 0.75rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

@media (width <= 768px) {
  .hero-icon {
    font-size: 3rem;
  }

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

  .policy-section h3 {
    font-size: 1.125rem;
  }

  .policy-list {
    margin-left: 1.25rem;
  }
}
