.page-support {
  color: #333333;
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
}

.page-support__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6);
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  padding: 20px;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

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

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

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

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

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

.page-support__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-support__button--small:hover {
  background-color: #e0a53a;
}

.page-support__button--cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-support__button--cta:hover {
  background-color: #e0a53a;
}

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

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

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

.page-support__faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.page-support__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

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

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

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

.page-support__contact-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__contact-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-support__resources-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.page-support__resource-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-support__resource-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

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

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

.page-support__resource-description {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-support__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 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__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-support__container {
    padding: 30px 15px;
  }

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

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

  .page-support__faq-item {
    padding: 20px;
  }

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

  .page-support__contact-options,
  .page-support__resource-list {
    grid-template-columns: 1fr;
  }

  .page-support__contact-icon,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }

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

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

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

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

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

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

  .page-support__button {
    padding: 10px 20px;
    font-size: 1em;
  }

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

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

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