:root {
  --brand: #6fa96c;
  --brand-light: #ff8847;
  --ink: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 32px rgba(0,0,0,.12);
  --gradient: linear-gradient(135deg, #539677, #73b470);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  background: #000000;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

h1.section-title {
  font-size: clamp(26px, 3vw, 36px);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

h1.section-title.margin-top {
  margin: 50px;
}

.lead {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.lead strong {
  color: #ffffff;
  font-weight: 700;
}

section {
  padding: 60px 0;
}

/* ===== Card styling (like your Privacy Policy page) ===== */
.policy-card {
  background: rgba(9, 241, 76, 0.15);
  border: 2px solid rgba(9, 241, 76, 0.4);
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 4px 20px rgba(9, 241, 76, 0.2);
}
.policy-card + .policy-card {
  margin-top: 16px;
}
.policy-card h2 {
  font-size: clamp(20px, 1.4rem, 28px);
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.4;
}
.policy-card p {
  color: #ffffff;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.policy-card p strong {
  color: #ffffff;
  font-weight: 700;
}
.policy-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.policy-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  line-height: 1.7;
  font-size: 1rem;
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #09F14C;
  box-shadow: 0 0 0 3px rgba(9, 241, 76, 0.3);
}

/* ===== Footer Styling ===== */
.footer {
  background: #000000;
  border-top: 1px solid rgba(9, 241, 76, 0.3);
  padding-top: 30px;
  margin-top: 40px;
}

.footer .cta-card {
  background: rgba(9, 241, 76, 0.15);
  border: 2px solid rgba(9, 241, 76, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(9, 241, 76, 0.2);
  padding: 24px;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .cta-card:hover { transform: translateY(-4px); box-shadow: 0 6px 30px rgba(9, 241, 76, 0.3); }

.cta-card span {
  display: inline-block;
  color: #09F14C;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.cta-card h1 { font-size: 28px; margin-bottom: 8px; color: #ffffff; }
.cta-card p { color: rgba(255, 255, 255, 0.85); margin-bottom: 16px; font-size: 15px; line-height: 1.6; }

.store-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.store-badges img { height: 48px; transition: transform .25s ease; }
.store-badges img:hover { transform: scale(1.05); }

.footer .bottom { border-top: 1px solid rgba(9, 241, 76, 0.3); padding: 10px 0; font-size: 14px; color: rgba(255, 255, 255, 0.8); background: #000000; }

.copyright-wrapper p { margin: 0; color: rgba(255, 255, 255, 0.8); }
.footer-links a { color: #09F14C; text-decoration: none; margin: 0 8px; }
.footer-links a:hover { color: #00FF63; text-decoration: underline; }

.scroll-top {
  position: fixed; right: 20px; bottom: 20px; width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(5,43,22,0.9), rgba(9,241,76,0.5)); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(9, 241, 76, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease; z-index: 999;
  border: 1px solid rgba(9, 241, 76, 0.4);
}
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(9, 241, 76, 0.45); text-decoration: none; }

.footer p.color-white {
  color: #ffffff;
}

.footer p.color-white a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: medium;
}

.footer p.color-white a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

@media (max-width: 767px) {
  section { padding: 40px 0; }
  .cta-card h1 { font-size: 22px; }
  .store-badges img { height: 42px; }
  .footer .bottom { text-align: center; }
}
