.page-support {
  padding-top: 10px; /* Small top padding to respect header offset, as body handles the main offset */
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-support__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF1E8;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-support__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-support__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-support__faq-section,
.page-support__contact-options-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px 15px;
  background-color: #2A1212;
  border-radius: 8px;
}

.page-support__section-title {
  font-weight: bold;
  line-height: 1.3;
  color: #F3C54D; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6A1E1E;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: #140C0C;
  border: 1px solid #6A1E1E;
  border-radius: 5px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: #2A1212;
}

.page-support__faq-question {
  font-weight: bold;
  color: #FFF1E8;
  margin-bottom: 10px;
}

.page-support__faq-answer {
  color: #FFF1E8;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px dashed #6A1E1E;
  margin-top: 10px;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
}

.page-support__contact-description {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
  color: #FFF1E8;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-support__contact-card {
  background-color: #140C0C;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-support__contact-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-support__contact-card-title {
  font-weight: bold;
  color: #F3C54D; /* Gold color for card titles */
  margin-bottom: 10px;
}

.page-support__contact-card-text {
  color: #FFF1E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__contact-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-support__contact-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding-bottom: 20px;
  }

  .page-support__hero-content {
    padding: 0 10px;
  }

  .page-support__main-title {
    font-size: 1.8em;
  }

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__section-title {
    font-size: 1.5em;
  }

  .page-support__faq-section,
  .page-support__contact-options-section {
    margin: 20px auto;
    padding: 15px 10px;
  }

  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support__hero-image,
  .page-support__faq-item img,
  .page-support__contact-icon {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.5em;
  }

  .page-support__section-title {
    font-size: 1.3em;
  }

  .page-support__cta-button,
  .page-support__contact-button {
    padding: 10px 15px;
    min-width: unset;
    width: 100%;
  }
}