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

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

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

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

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

.page-support__hero-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;
  text-align: center;
  font-size: 1.1em;
}

.page-support__hero-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-support__hero-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__hero-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #e0a53a;
}

.page-support__features-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
}

.page-support__features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-support__features-title {
  font-size: 2.5em;
  margin-bottom: 60px;
  color: #000000;
  font-weight: bold;
}

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

.page-support__feature-card {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-support__feature-icon {
  width: 250px;
  height: 187px; /* Maintain aspect ratio for 400x300 example */
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
  /* Ensure minimum size */
  min-width: 200px;
  min-height: 150px;
}

.page-support__feature-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #000000;
  font-weight: bold;
}

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

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

.page-support__feature-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__feature-card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__feature-card-link:hover {
  background-color: #e0a53a;
}

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

.page-support__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.page-support__cta-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;
  text-align: center;
  font-size: 1.1em;
}

.page-support__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-support__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__cta-button--login:hover {
  background-color: #e0a53a;
}

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

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

  .page-support__hero-actions,
  .page-support__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__hero-button,
  .page-support__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-support__features-title,
  .page-support__cta-title {
    font-size: 2em;
  }

  .page-support__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-support__feature-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;   /* Maintain aspect ratio */
    min-width: 200px; /* Enforce minimum size */
    min-height: 150px; /* Enforce minimum size */
  }

  .page-support__features-section,
  .page-support__cta-section {
    padding: 60px 15px;
  }

  .page-support__feature-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }

  .page-support__features-title,
  .page-support__cta-title {
    font-size: 1.8em;
  }

  .page-support__hero-button,
  .page-support__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-support img {
  min-width: 200px;
  min-
}

/* Ensure images within .page-support do not use filter to change color */
.page-support img {
  filter: none; /* Explicitly disable any potential filter effects */
}

/* Mobile responsive image constraint for content area */
@media (max-width: 768px) {
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}