.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.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: 900px;
  margin: 0 auto;
  color: #FFFFFF;
}

.page-support__hero-content {
  padding: 20px;
}

.page-support__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  font-weight: bold;
}

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

.page-support__cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-support__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__cta-button--live-chat {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-support__cta-button--live-chat:hover {
  background-color: #e0a53b;
}

.page-support__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 1px solid #FCBC45;
}

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

.page-support__content-area {
  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-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.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;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FCBC45;
}

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

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

.page-support__faq-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-support__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.page-support__contact-options-section {
  background-color: #000000; /* Dark background for contact section */
  padding: 60px 20px;
  color: #FFFFFF;
}

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

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

.page-support__contact-card {
  background-color: #333333;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__contact-icon {
  width: 200px; /* Min 200px */
  height: 200px; /* Min 200px */
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FCBC45;
}

.page-support__contact-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__contact-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

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

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

.page-support__resources-section {
  padding: 60px 20px;
}

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

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

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

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

.page-support__resource-title {
  font-size: 1.3em;
  color: #000000;
  padding: 15px 20px 0;
  font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
  }

  .page-support__main-title {
    font-size: 2em;
  }

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

  .page-support__cta-group {
    flex-direction: column;
  }

  .page-support__content-area {
    padding: 20px 15px;
  }

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

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

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

  .page-support__faq-image,
  .page-support__contact-icon,
  .page-support__resource-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }

  /* Critical: Ensure all content images in mobile are responsive and don't cause overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  .page-support__hero-image {
    height: 100%; /* Maintain height for hero background effect */
  }

  .page-support__contact-icon {
    width: 200px; /* Still meet min 200px requirement */
    height: 200px;
  }

  .page-support__resource-image {
    height: 200px; /* Adjusted fixed height for mobile resource cards */
  }
}