/* return.css */

.policy-hero {
  background-color:#f9f5f0;
  color: #a8814c;
  padding: 3rem 1rem;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.policy-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.policy-hero p {
  font-size: 1rem;
  color: #a8814c;
  opacity: 0.9;
}

.policy-content {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  color: #222;
  font-size: 1rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease;
}

.policy-content h2 {
  color: #a8814c;
  margin-top: 2.5rem;
  border-bottom: 1px solid #e1d6c7;
  padding-bottom: 8px;
  font-size: 1.5rem;
}

.policy-content ul,
.policy-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

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

.policy-content ol li {
  list-style: decimal;
}

.policy-content a {
  color: #a8814c;
  text-decoration: underline;
}

.policy-content a:hover {
  color: #825f2f;
}

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

  .policy-content {
    padding: 2rem 1.2rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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