.page-support {
  color: #ffffff; /* Light text for dark body background */
}

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

.page-support__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 20px;
}

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

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

.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;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-support__button--primary {
  background-color: #FFD700; /* Primary gold */
  color: #333333;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: #8B0000; /* Auxiliary red */
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-support__button--secondary:hover {
  background-color: #6b0000;
  transform: translateY(-2px);
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-support__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

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

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

.page-support__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__contact-section {
  background-color: rgba(139, 0, 0, 0.2); /* Semi-transparent auxiliary red */
  padding: 60px 20px;
  margin-top: 60px;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
  width: 120px; /* Enlarge icons for visibility */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-support__contact-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 25px;
}

.page-support__resources-section {
  padding: 60px 20px;
}

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

.page-support__resource-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-support__resource-description {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.5;
}

.page-support__cta-section {
  background-color: #8B0000; /* Auxiliary red */
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-support__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }

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

  .page-support__hero-actions {
    flex-direction: column;
  }

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

  .page-support__faq-question {
    font-size: 1.2em;
  }

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

  .page-support__cta-title {
    font-size: 2.5em;
  }

  /* Critical: Ensure images are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all images within .page-support are not too small */
.page-support img:not(.page-support__contact-icon) {
  min-width: 200px;
  min-height: 200px;
}

.page-support__contact-icon {
  min-width: 120px;
  min-height: 120px;
}