/* refund-policy.css */

.policy-hero{
    padding: 4.2rem 0 2.5rem;
    text-align: center;
  }
  
  .policy-title{
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -.02em;
  }
  
  .policy-sub{
    margin: .9rem auto 0;
    max-width: 880px;
    color: var(--text-muted);
    font-size: 1.05rem;
  }
  
  .policy-card{
    padding: 2rem;
  }
  
  .policy-h2{
    font-size: 1.35rem;
    margin-bottom: .65rem;
  }
  
  .policy-text{
    color: rgba(255,255,255,.86);
    margin-bottom: .5rem;
  }
  
  .policy-list{
    margin-left: 1.1rem;
    color: rgba(255,255,255,.86);
  }
  
  .policy-list li{
    margin: .55rem 0;
  }
  
  .policy-divider{
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 1.6rem 0;
  }
  
  .policy-actions{
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .policy-note{
    color: var(--text-muted);
    font-size: .95rem;
  }
  
  @media (max-width: 640px){
    .policy-card{ padding: 1.3rem; }
    .policy-actions .btn{ width: 100%; }
  }
  
  /* =========================
   REFUND POLICY – LIGHT THEME FIX
   Paste at END of refund-policy.css
========================= */

.policy-hero{
    padding: 3.2rem 0 1.8rem;
  }
  
  /* Make policy card readable on light background */
  .policy-card{
    background: rgba(233,254,255,.78) !important;
    border: 1px solid rgba(17,119,255,.22) !important;
    box-shadow: 0 18px 40px rgba(2,6,23,.10) !important;
    border-radius: 22px;
  }
  
  /* Text colors (dark) */
  .policy-h2,
  .policy-title{
    color: #0f172a;
  }
  
  .policy-sub,
  .policy-note{
    color: #475569;
  }
  
  .policy-text,
  .policy-list{
    color: #334155;
  }
  
  .policy-list strong{
    color: #0f172a;
  }
  
  .policy-divider{
    background: rgba(2,6,23,.08);
  }
  
  /* Buttons row */
  .policy-actions{
    margin-top: 1.2rem;
    justify-content: center;
  }
  
  /* Fix ghost button visibility (About-page issue same type) */
  .policy-actions .btn-ghost{
    background: rgba(37, 99, 235, 0.10);
    color: #1e40af;
    border: 1px solid rgba(37, 99, 235, 0.35);
  }
  .policy-actions .btn-ghost:hover{
    background: rgba(37, 99, 235, 0.18);
    color: #1e3a8a;
  }
  
  /* Mobile */
  @media (max-width: 640px){
    .policy-actions{ width: 100%; }
    .policy-actions .btn{ width: 100%; }
  }
  
  /* =========================
   TERMS PAGE – LIGHT THEME FIX
   Paste at END of terms.css
========================= */

.policy-hero{
    padding: 3.2rem 0 1.8rem;
    text-align: center;
  }
  
  /* Card like your light theme */
  .policy-card{
    background: rgba(233,254,255,.78) !important;
    border: 1px solid rgba(17,119,255,.22) !important;
    box-shadow: 0 18px 40px rgba(2,6,23,.10) !important;
    border-radius: 22px;
    padding: 2rem;
  }
  
  /* Headings */
  .policy-title,
  .policy-h2{
    color: #0f172a;
  }
  
  /* Paragraph + list text */
  .policy-sub,
  .policy-note{
    color: #475569;
  }
  
  .policy-text,
  .policy-list{
    color: #334155;
  }
  
  .policy-list strong{
    color: #0f172a;
  }
  
  /* Divider */
  .policy-divider{
    background: rgba(2,6,23,.08);
  }
  
  /* Links inside text (you used footer-link class) */
  .policy-card a.footer-link{
    color: #1d4ed8;
    text-decoration: underline;
  }
  .policy-card a.footer-link:hover{
    color: #1e40af;
  }
  
  /* Actions row */
  .policy-actions{
    margin-top: 1.2rem;
    justify-content: center;
  }
  
  /* Fix ghost button visibility */
  .policy-actions .btn-ghost{
    background: rgba(37, 99, 235, 0.10);
    color: #1e40af;
    border: 1px solid rgba(37, 99, 235, 0.35);
  }
  .policy-actions .btn-ghost:hover{
    background: rgba(37, 99, 235, 0.18);
    color: #1e3a8a;
  }
  
  /* Mobile */
  @media (max-width: 640px){
    .policy-card{ padding: 1.3rem; }
    .policy-actions .btn{ width: 100%; }
  }

  /* WhatsApp button */
.btn-whatsapp{
  background: #25D366;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 14px 30px rgba(37,211,102,.35);
  font-weight: 700;
}

.btn-whatsapp:hover{
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37,211,102,.45);
}
