.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); /* Ensure content clears fixed header */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 0; /* Content padding handled by inner container */
}

.page-support__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 500px;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly transparent to make text readable */
}

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

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

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

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

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

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

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

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

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

.page-support__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-support__faq-section,
.page-support__resources-section,
.page-support__contact-section,
.page-support__cta-final-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-support__faq-list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.page-support__button--contact:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

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

.page-support__resource-card {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
}

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

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

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

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

.page-support__resource-description {
  font-size: 0.95em;
  color: #555555;
  padding: 10px 20px;
  flex-grow: 1;
}

.page-support__resource-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  padding: 15px 20px;
  font-weight: bold;
  border-top: 1px solid #eeeeee;
  transition: color 0.3s ease;
}

.page-support__resource-link:hover {
  color: #FCBC45;
}

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

.page-support__contact-card {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-support__button--chat,
.page-support__button--email,
.page-support__button--social {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  width: 100%;
}

.page-support__button--chat:hover,
.page-support__button--email:hover,
.page-support__button--social:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-2px);
}

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

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

.page-support__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

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

.page-support__button--register-large:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-support__button--explore {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 15px 35px;
  font-size: 1.1em;
}

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

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

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-support__hero-container {
    padding: 40px 15px;
    min-height: 400px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-support__button {
    width: 100%;
    max-width: 250px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-section,
  .page-support__resources-section,
  .page-support__contact-section,
  .page-support__cta-final-section {
    padding: 60px 0;
  }
  .page-support__resource-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__resource-card, .page-support__contact-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
  .page-support__cta-final-title {
    font-size: 2em;
  }
  .page-support__cta-final-description {
    font-size: 1em;
  }
  .page-support__cta-final-actions {
    flex-direction: column;
    gap: 10px;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__hero-image {
    width: 100%; /* Ensure hero image is responsive */
    height: 100%;
  }
}

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