/* =========================================
   Example Page Styles (Shared)
========================================= */

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.6;
}

.page-header {
  background: linear-gradient(135deg, #1d4ed8 0%, #0b1120 100%);
  color: #e5e7eb;
  padding: 48px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.page-header .subtitle {
  font-size: 1.1rem;
  color: #cbd5f5;
  margin: 0;
}

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.content section {
  margin-bottom: 40px;
}

.content h2 {
  font-size: 1.4rem;
  margin: 0 0 16px;
  color: #0f172a;
}

.content p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: #475569;
}

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

.content ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #475569;
}

.content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.content strong {
  color: #0f172a;
}

hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 40px 0;
}

/* =========================================
   BUTTONS
========================================= */

.ch-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  border: 1px solid #0ea5e9;
  color: #0ea5e9;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.ch-cta-secondary:hover {
  background: #0ea5e911;
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 10px 18px;
  border-radius: 8px;
  background: #ffe9a8;
  color: #8a5a00;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-secondary-alt {
  background: #e9eef6 !important;
  color: #003a7a !important;
}

/* =========================================
   DONATION BOX
========================================= */

.donation-box {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 10px;
}

.donation-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.donation-box p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #0f172a;
}

.donation-box p:last-child {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
  margin-top: 14px;
}

/* =========================================
   PRO PLACEHOLDER
========================================= */

.pro-placeholder {
  margin-top: 50px;
  padding: 22px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: #ffffff;
}

.pro-placeholder h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.pro-placeholder p {
  margin-bottom: 14px;
}

.pro-placeholder p:last-child {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #666;
}

/* =========================================
   FOOTER
========================================= */

.ch-footer {
  background: #020617;
  color: #9ca3af;
  padding: 18px 0;
  font-size: 0.86rem;
  margin-top: 60px;
}

.ch-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.ch-footer-row a {
  color: #e5e7eb;
  text-decoration: none;
}

.ch-footer-row a:hover {
  text-decoration: underline;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 720px) {
  .page-header {
    padding: 36px 20px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  .page-header .subtitle {
    font-size: 1rem;
  }

  .content {
    padding: 0 20px 40px;
  }

  .content h2 {
    font-size: 1.2rem;
  }

  .ch-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
