/* Global Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================
   Help Centre Hero Section
================================ */
.help-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('../images/help_bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.help-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.help-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.hero-main-text {
  font-size: 3.5rem;
  text-transform: uppercase;
}

.hero-main-text .highlight-text {
  color: #00A650;
}

.hero-tagline {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
}

/* ================================
   Help Topics Section
================================ */
.help-topics {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  text-align: center;
}

.help-topics .section-title {
  color: #00A650;
  text-transform: uppercase;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Topic Card */
.topic-card {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.topic-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00A650;
}

.topic-card p {
  font-size: 1rem;
  color: #ccc;
}

/* ================================
   FAQ Section
================================ */
.faq-section {
  background-color: #111;
  padding: 4rem 2rem;
  text-align: center;
}

.faq-section .section-title {
  color: #00A650;
  text-transform: uppercase;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 1rem 0;
}

.faq-question {
  cursor: pointer;
  font-size: 1.2rem;
  color: #00A650;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  font-size: 1rem;
  color: #ccc;
}

.faq-toggle {
  font-size: 1.5rem;
}

/* ================================
   Contact Support CTA Section
================================ */
.contact-support {
  text-align: center;
  padding: 3rem 0;
  background: #111;
}

.btn-cta {
  background-color: #00A650;
  color: #fff;
  padding: 1rem 2rem;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
}
