.hero-banner {
  background: radial-gradient(circle at top left, rgba(255, 179, 71, 0.8), rgba(15, 23, 42, 0.92));
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  margin-bottom: 2.5rem;
}

.hero-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
}

.hero-banner p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 1.5rem;
}

.hero-banner .btn-primary {
  background: #ffb347;
  color: #0b1120;
  border: none;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.hero-banner .btn-primary:hover,
.hero-banner .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(255, 179, 71, 0.35);
}

.support-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.07);
}

.support-section h2 {
  margin-top: 0;
}

.contact-list,
.issue-list {
  padding-left: 1rem;
}

.contact-list li,
.issue-list li {
  margin-bottom: 0.6rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.faq-card {
  background: #f5f7fb;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline {
  border-left: 4px solid #ffb347;
  padding-left: 1.4rem;
}

.timeline h3 {
  margin-top: 0;
}

.support-section a {
  color: #f77f00;
}

.support-section a:hover,
.support-section a:focus {
  color: #ff9f1c;
}

body {
  background: #f1f5f9;
}

@media (max-width: 640px) {
  .support-section {
    padding: 1.9rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
