/* ===========================
   Help page specific styles
   =========================== */

/* ===== Hero (Help Page) ===== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 42px 16px 32px;
  background: var(--light-gray-bg);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 880px;
  text-align: center;
}
.hero-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: var(--dark-text);
  margin: 0;
}
.hero-heading .highlight {
  color: var(--primary-blue);
}
.hero-description {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-light);
  margin: 0;
}
@media (min-width: 1024px) {
  .hero-heading {
    font-size: 40px;
    line-height: 52px;
  }
  .hero-description {
    font-size: 20px;
    line-height: 32px;
  }
}

/* ===== Help Section ===== */
#help {
  background-color: #ffffff;
  padding: 100px 16px 100px;
}
.help-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.help-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ===== Help Grid ===== */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Cards reused on help page */
.feature-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--light-blue-bg);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-icon {
  font-size: 24px;
  line-height: 32px;
}
.feature-heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
}
.feature-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-light);
}

@media (min-width: 900px) {
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Divider */
hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 24px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .help-hero-container h1 {
    font-size: 32px;
  }
  .feature-card {
    padding: 20px;
  }
}
