.page-support {
  color: #ffffff; /* Light text for dark body background */
  background-color: #000; /* Ensure consistency with body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 500px; /* Minimum height for hero section */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the background image for text readability */
}

.page-support__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-content {
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
}

.page-support__hero-title {
  font-size: 3em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-support__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-support__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1A1A1A; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for dark background */
  border: 2px solid #FFD700;
}

.page-support__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section,
.page-support__cta-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-support__faq-item {
  background-color: #1A1A1A; /* Dark auxiliary color */
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: #2a2a2a;
  border-color: #e6c200;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
}

.page-support__faq-answer {
  font-size: 1em;
  color: #f0f0f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 200px; /* Adjust based on expected content */
  padding-top: 15px;
}

.page-support__contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__channel-card {
  background-color: #1A1A1A;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__channel-icon {
  width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-support__channel-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support__channel-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__resource-card {
  background-color: #1A1A1A;
  border: 1px solid #FFD700;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #FFD700;
}

.page-support__resource-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-support__resource-text {
  font-size: 0.95em;
  color: #f0f0f0;
  padding: 0 20px 20px;
}

.page-support__cta-section {
  background-color: #0d0d0d;
  text-align: center;
  padding: 80px 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__channel-icon,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__channel-card,
  .page-support__resource-card {
    padding: 20px;
  }
  .page-support__channel-title {
    font-size: 1.5em;
  }
  .page-support__resource-title {
    font-size: 1.2em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 40px 15px;
  }
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-content {
    padding: 20px;
  }
  .page-support__container {
    padding: 20px 15px;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__section-description {
    font-size: 0.9em;
  }
  .page-support__faq-item {
    padding: 15px;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__channel-card,
  .page-support__resource-card {
    padding: 15px;
  }
  .page-support__channel-title {
    font-size: 1.3em;
  }
  .page-support__resource-title {
    font-size: 1.1em;
  }
}