.page-support {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensures consistency, though body background is already white */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC */
}

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

.page-support__hero-section {
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

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

.page-support__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight title with prominent color */
}

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

.page-support__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  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;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__button--live-chat,
.page-support__button--contact,
.page-support__button--chat-now,
.page-support__button--email-us,
.page-support__button--call-us {
  background-color: #FCBC45; /* Login button color for primary CTAs */
  color: #000000;
}

.page-support__button--live-chat:hover,
.page-support__button--contact:hover,
.page-support__button--chat-now:hover,
.page-support__button--email-us:hover,
.page-support__button--call-us:hover {
  background-color: #e0a53b; /* Slightly darker on hover */
}

.page-support__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-support__button--register:hover {
  background-color: #f0f0f0;
}

.page-support__hero-image {
  margin-top: 40px;
  width: 100%;
  max-width: 1200px; /* Constrain image width */
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

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

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

.page-support__faq-section,
.page-support__contact-methods,
.page-support__resources-section {
  padding: 60px 0;
  background-color: #f9f9f9; /* Light background for content sections */
}

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

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

.page-support__faq-item,
.page-support__method-card,
.page-support__resource-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__faq-question,
.page-support__method-title,
.page-support__resource-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #000000;
}

.page-support__faq-link,
.page-support__resource-link {
  color: #FCBC45; /* Link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__faq-link:hover,
.page-support__resource-link:hover {
  color: #e0a53b;
}

.page-support__faq-answer,
.page-support__method-description,
.page-support__resource-description {
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__method-card img,
.page-support__resource-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency in cards */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

.page-support__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.page-support__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #000000;
}

/* Responsive Design */
@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 {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
  }
  .page-support__faq-grid,
  .page-support__methods-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__method-card img,
  .page-support__resource-card img {
    height: auto; /* Allow image height to adjust */
    max-width: 100%; /* Ensure images don't overflow */
    min-width: 200px;
    min-height: 200px;
  }

  /* Crucial for mobile images to prevent overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__method-card img,
  .page-support__resource-card img {
    height: 200px; /* Slightly smaller fixed height on mobile */
  }
}

/* Ensure no image filter */
.page-support img {
  filter: none !important;
}

/* Ensure content area image sizes are not too small */
.page-support img {
  min-width: 200px;
  min-height: 200px;
}