.page-support {
  color: #ffffff; /* Default text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Ensure the main content area has the specified background */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  background-color: #000000; /* Dark background for hero section */
}

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

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

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

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

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

.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, transform 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

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

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

.page-support__button--secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

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

.page-support__button--tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-support__button--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-support__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-support__faq-question {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #FCBC45;
  font-weight: bold;
}

.page-support__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-support__faq-more {
  text-align: center;
  margin-top: 50px;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background */
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-support__contact-icon {
  width: 250px; /* Min size 200px */
  height: 187px; /* Maintain aspect ratio for 400x300 display */
  object-fit: contain;
  margin-bottom: 25px;
  filter: brightness(0.8) contrast(1.2); /* Subtle effect, not color change */
  border-radius: 5px;
}

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

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

.page-support__resources-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background */
}

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

.page-support__resource-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, min 200px */
  object-fit: cover;
  display: block;
}

.page-support__resource-title {
  font-size: 1.5em;
  padding: 20px;
  color: #FCBC45;
  font-weight: bold;
}

.page-support__resource-title .page-support__link {
  color: #FCBC45;
  text-decoration: none;
}

.page-support__resource-title .page-support__link:hover {
  text-decoration: underline;
}

.page-support__resource-description {
  font-size: 0.95em;
  color: #e0e0e0;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.page-support__link {
  color: #FCBC45;
  text-decoration: none;
}

.page-support__link:hover {
  text-decoration: underline;
}

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

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

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 0;
  }

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

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

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

  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-support__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__resource-card {
    padding: 25px;
  }

  .page-support__contact-icon {
    width: 200px; /* Ensure min size 200px */
    height: 150px; /* Maintain aspect ratio for 400x300 display */
  }

  /* Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  .page-support__hero-image,
  .page-support__contact-icon,
  .page-support__resource-image {
    filter: none; /* Remove filter on images for mobile if any */
  }

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

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

  .page-support__resource-title {
    font-size: 1.3em;
  }
}

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

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

  .page-support__button {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }

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