/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: linear-gradient(120deg, #f8f9fb, #e3ecf5);
  overflow-x: hidden;
}

/* ===== Policy Section ===== */
.policy-section {
  padding: 80px 20px;
  animation: fadeIn 1.2s ease-in;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  animation: fadeUp 1.2s ease;
}

.policy-title {
  text-align: center;
  font-size: 2.4rem;
  color: #111;
  margin-bottom: 5px;
}

.policy-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.policy-content h2 {
  color: #f59e0b;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.policy-content p, .policy-content li {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.policy-content ul {
  padding-left: 25px;
}

.policy-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.policy-content a:hover {
  text-decoration: underline;
}

.closing-note {
  font-weight: 500;
  color: #222;
  margin-top: 30px;
}

/* ===== Back Button ===== */
.back-btn {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  background: linear-gradient(135deg, #f59e0b, #3b82f6);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}

.back-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #f59e0b);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
  background: #f0f4f7;
  border-top: 1px solid #ddd;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  50% { box-shadow: 0 0 15px 10px rgba(0, 123, 255, 0.2); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .policy-container {
    padding: 25px;
  }

  .policy-title {
    font-size: 2rem;
  }

  .back-btn {
    display: block;
    text-align: center;
    margin: 25px auto 0;
  }
}
