*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --purple: #5b4ef8;
  --purple-dark: #4338e0;
  --purple-light: #7c6ff7;
  --gray-light: #f3f4f8;
  --gray-text: #6b7280;
  --border: #e5e7eb;
  --dark: #111827;
  --white: #ffffff;
  --radius: 14px;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--gray-light);
  color: var(--dark);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img {
  display: block;
}

.page {
  padding-top: 64px;
  min-height: 100vh;
}

.support-hero {
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 2rem;
}

.support-hero .hero-inner {
  max-width: 700px;
  animation: fadeInUp 0.8s ease;
}

.support-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.support-hero p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
}

.light-hero {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
}

.split-hero {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.split-hero .two-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.split-hero .hero-img {
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.dark-hero {
  background: linear-gradient(135deg, #2d2d2d, var(--purple-dark));
}

.support-section {
  background: #f9fafc;
  padding: 3rem 2rem;
}

.faq-intro {
  text-align: center;
  margin-bottom: 1rem;
}

.faq-banner {
  width: 100%;
  max-width: 600px;
  max-height: 300px;
  height: auto;
  border-radius: 12px;
  margin: 1rem auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.faq-lead {
  font-size: 1.1rem;
  color: #555555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.policy-quote {
  font-style: italic;
  color: var(--purple-dark);
  margin: 2rem auto;
  max-width: 700px;
  text-align: center;
  padding: 0 2rem;
}

.terms-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.timeline-step {
  background: var(--white);
  padding: 1rem 1.25rem;
  border-left: 6px solid var(--purple);
  border-radius: 0 10px 10px 0;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  margin-right: 0.65rem;
}

.support-grid {
  display: grid;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.horizontal-layout {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.support-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.support-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.support-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--purple);
}

.support-card h3 {
  margin-bottom: 0.75rem;
  color: var(--purple-dark);
  font-size: 1.05rem;
}

.support-card p {
  color: #555555;
  line-height: 1.7;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--purple-dark);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.accordion-item {
  border-bottom: 1px solid #dddddd;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-dark);
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: var(--gray-light);
}

.accordion-body {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  background: #fafafa;
  color: #555555;
  line-height: 1.7;
}

.accordion-item.active .accordion-body {
  display: block;
}

.cta-section {
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cta-inner h2 {
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.cta-inner p {
  color: #555555;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-purple-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-purple-lg:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.cta-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
}

.cta-image {
  width: 100%;
  max-width: 420px;
  max-height: 250px;
  height: auto;
  margin: 1.5rem auto 0;
  border-radius: 12px;
  object-fit: cover;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .split-hero .two-col {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .support-section {
    padding: 2rem 1rem;
  }

  .support-hero {
    padding: 2rem 1rem;
  }

  .cta-inner {
    padding: 2rem 1.25rem;
  }
}