.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  background-color: #000000; /* Dark background for contrast */
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-support__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

.page-support__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.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;
  font-weight: bold;
}

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

.page-support__faq-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

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

.page-support__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  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;
  font-weight: 600;
}

.page-support__faq-answer {
  color: #666666;
  font-size: 1em;
}

.page-support__button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-support__button--primary {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-support__button--secondary {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__button--secondary:hover {
  background-color: #e0a53b;
}

.page-support__contact-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
}

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

.page-support__contact-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.page-support__contact-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #FCBC45;
  color: #000000;
  padding: 25px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Ensure minimum size */
}

.page-support__contact-button img {
  
  
  object-fit: contain;
}

.page-support__contact-button:hover {
  background-color: #e0a53b;
  transform: translateY(-5px);
}

.page-support__resources-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

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

.page-support__resource-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-support__resource-image {
  width: 100%;
  height: 200px; /* Consistent height for resource images */
  object-fit: cover;
}

.page-support__resource-title {
  font-size: 1.4em;
  color: #000000;
  margin: 20px 15px 10px;
  font-weight: 600;
}

.page-support__resource-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-support__resource-description {
  color: #666666;
  font-size: 0.95em;
  padding: 0 15px 20px;
}

.page-support__button-link {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__button-link:hover {
  color: #e0a53b;
  border-color: #e0a53b;
}

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

  .page-support__hero-description {
    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__resources-grid {
    grid-template-columns: 1fr;
  }

  .page-support__contact-options {
    flex-direction: column;
    align-items: center;
  }

  .page-support__contact-button {
    width: 100%;
    max-width: 300px;
  }

  /* Mobile image overflow prevention */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are not tiny */
  .page-support__resource-image {
    height: 200px; /* Maintain minimum height */
  }
}

/* Ensure all images within .page-support are at least 200px wide */
.page-support img {
  min-width: 200px; /* Global minimum width for content images */
  min-height: 200px; /* Global minimum height for content images */
}

/* Override for specific small icons if they were intended (but are forbidden by rules) */
/* The rules strictly forbid small icons. The 60x60 icons are for demonstration but violate the 200x200 rule. */
/* If these were to be used, they would need to be 200x200 or larger. */
/* For the purpose of strict compliance, I will adjust the imageRequirements to be 200x200 minimum. */
/* For the icons, I will set their HTML width/height to 200x200 to enforce the rule, but visually they might be smaller via CSS if needed, however, the CSS rule below prevents that. */
.page-support__contact-button img {
  width: 200px; /* Enforcing minimum width for compliance */
  height: 200px; /* Enforcing minimum height for compliance */
  object-fit: contain; /* Maintain aspect ratio */
}

/* The following rule is crucial for strict compliance: */
/* All images selected by any selector under .page-support must not be rendered smaller than 200px */
.page-support img:not(.shared-header img):not(.shared-footer img) {
  min-width: 200px;
  min-height: 200px;
  /* If an image's HTML width/height is smaller than 200, this CSS rule will override it to 200px. */
  /* For images that are supposed to be smaller (like icons), their HTML width/height should be set to 200px to avoid conflict with this rule, and object-fit: contain can scale the visual content. */
}