.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 is not hidden by fixed header */
  background-color: #FFFFFF;
}

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

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

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  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, transform 0.3s ease;
  font-size: 1.1em;
}

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

.page-support__hero-button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

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

.page-support__hero-button--login:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

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

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

.page-support__faq-section {
  padding: 80px 20px;
  background-color: #F9F9F9;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.page-support__faq-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px 25px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-support__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin: 0;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-top: 0;
  color: #444444;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

.page-support__faq-answer p {
  margin: 0;
}

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

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

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
  text-align: center;
}

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

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

.page-support__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 30px;
}

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

.page-support__button--tertiary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  margin-top: 20px;
}

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

.page-support__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__contact-card {
  background-color: #F9F9F9;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-icon {
  width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-support__contact-card-description {
  color: #555555;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-support__resources-section {
  padding: 80px 20px;
  background-color: #F0F0F0;
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__resource-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 30px;
}

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__resource-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

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

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

.page-support__resource-card-description {
  color: #555555;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-support__cta-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-support__cta-container {
  position: relative;
  z-index: 2;
  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-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-support__cta-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block;
}

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

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

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

  .page-support__faq-image-container {
    order: 2;
  }

  .page-support__faq-list {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__resources-section,
  .page-support__cta-section {
    padding: 60px 15px;
  }

  .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__hero-button {
    width: 100%;
  }

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

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

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

  .page-support__faq-item.active .page-support__faq-answer {
    max-height: 250px; /* Adjust for mobile content */
  }

  /* Mobile content area images must be responsive */
  .page-support img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size is maintained */
    min-height: 200px;
  }

  .page-support__contact-icon {
    width: 200px;
    height: auto;
  }

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

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

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

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

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

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