.page-support {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensure content background matches body or is visually consistent */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF; /* Light text for dark hero background */
  text-align: center;
}

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

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability, NO color change filters */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.page-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

.page-support__hero-cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-support__hero-cta-button:hover {
  background-color: #e0a53a;
}

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

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

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

.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-cta-section {
  padding: 60px 0;
}

.page-support__faq-section {
  background-color: #F8F8F8;
}

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

.page-support__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 15px;
  cursor: pointer;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none; /* Hidden by default for accordion effect */
}

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__faq-contact-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-support__faq-contact-button:hover {
  background-color: #e0a53a;
}

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

.page-support__guide-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
}

.page-support__guide-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-support__guide-card-title {
  font-size: 1.4em;
  color: #000000;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-support__guide-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__guide-card-title a:hover {
  color: #FCBC45;
}

.page-support__guide-card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 15px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-support__guide-card-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px 20px;
  transition: color 0.3s ease;
}

.page-support__guide-card-link:hover {
  text-decoration: underline;
}

.page-support__contact-cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-support__contact-cta-section .page-support__section-title {
  color: #FFFFFF;
}

.page-support__contact-cta-section .page-support__section-intro {
  color: #F0F0F0;
}

.page-support__contact-cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-support__contact-cta-button:hover {
  background-color: #e0a53a;
}

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

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

  .page-support__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-support__section-intro {
    font-size: 0.95em;
  }

  .page-support__faq-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }

  .page-support__faq-item,
  .page-support__guide-card {
    padding: 20px;
  }

  .page-support__guide-card-image {
    height: 200px;
  }

  /* Ensure all content images are responsive and not smaller than 200px */
  .page-support img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-support__faq-item .page-support__faq-contact-button,
  .page-support__contact-cta-button {
    min-width: unset;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 30px 15px;
  }

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

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

  .page-support__container {
    padding: 20px 15px;
  }

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

  .page-support__faq-item,
  .page-support__guide-card {
    padding: 15px;
  }
}