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

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

.page-support__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  padding: 40px 20px;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Make image a subtle background */
  z-index: 0;
  filter: none; /* No CSS filter to change image color */
}

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

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

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

.page-support__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  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: 200px; /* Ensure buttons are not too small */
  text-align: center;
  font-size: 1.1em;
}

.page-support__button--register {
  background-color: #FFFFFF; /* Custom color for Register */
  color: #000000;
  border: 2px solid #FFFFFF;
}

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

.page-support__button--login {
  background-color: #FCBC45; /* Custom color for Login */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

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

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-support__faq-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-support__faq-answer {
  color: #555555;
}

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__faq-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #EFEFEF;
  padding: 40px;
  border-radius: 10px;
}

.page-support__faq-image {
  flex-shrink: 0;
  width: 400px; /* Ensure image is large enough */
  height: 300px; /* Ensure image is large enough */
  object-fit: cover;
  border-radius: 8px;
  filter: none; /* No CSS filter to change image color */
}

.page-support__faq-cta-content {
  flex-grow: 1;
}

.page-support__faq-cta-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__faq-cta-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

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

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

.page-support__contact-options-section {
  padding: 80px 0;
}

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

.page-support__contact-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-support__contact-icon {
  width: 250px; /* Min size 200px */
  height: 180px; /* Min size 200px */
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* No CSS filter to change image color */
}

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

.page-support__contact-description {
  color: #555555;
  margin-bottom: 25px;
}

.page-support__button--chat,
.page-support__button--email,
.page-support__button--phone {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__button--chat:hover,
.page-support__button--email:hover,
.page-support__button--phone:hover {
  background-color: #E0A83A;
}

.page-support__resources-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-support__resource-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  filter: none; /* No CSS filter to change image color */
}

.page-support__resource-content {
  padding: 25px;
}

.page-support__resource-title {
  font-size: 1.3em;
  margin-bottom: 15px;
}

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

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

.page-support__resource-description {
  color: #555555;
  margin-bottom: 20px;
}

.page-support__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

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

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

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

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

.page-support__button--register-large {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-support__button--register-large:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-support__button--login-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-support__button--login-large:hover {
  background-color: transparent;
  color: #FCBC45;
}

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

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

  .page-support__faq-cta {
    flex-direction: column;
    text-align: center;
  }

  .page-support__faq-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Constrain image on smaller screens */
  }
}

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

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

  .page-support__button {
    padding: 12px 25px;
    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__contact-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }

  .page-support__faq-cta {
    padding: 30px;
  }

  .page-support__faq-question,
  .page-support__faq-cta-title,
  .page-support__contact-title,
  .page-support__resource-title {
    font-size: 1.2em;
  }

  .page-support__contact-icon {
    width: 200px; /* Min size */
    height: 150px; /* Min size */
  }

  .page-support__resource-image {
    height: 200px;
  }

  /* Ensure content images do not overflow on mobile */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  /* Specific overrides for smaller image elements if needed, ensuring min-size is met */
  .page-support__contact-item img, .page-support__faq-image, .page-support__resource-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 30px 15px;
  }

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

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

  .page-support__hero-buttons {
    flex-direction: column;
  }

  .page-support__button {
    width: 100%;
  }

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

  .page-support__section-intro {
    font-size: 0.85em;
  }

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

  .page-support__faq-question,
  .page-support__faq-cta-title,
  .page-support__contact-title,
  .page-support__resource-title {
    font-size: 1.1em;
  }
}