.page-support {
  color: #333333; /* Dark text for light background */
}

.page-support__hero-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure header offset for PC and mobile */
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

.page-support__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.page-support__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

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

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

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

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

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

.page-support__button--contact {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 40px;
}

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

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

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

.page-support__contact-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
  width: 250px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__card-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #000000;
  color: #FFFFFF;
}

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

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

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

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

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

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

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

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

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

.page-support__resource-description {
  font-size: 1em;
  color: #666666;
  padding: 0 25px 25px;
  line-height: 1.6;
}

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

.page-support__cta-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-support__cta-image {
  width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 250px;
}

.page-support__cta-text-content {
  width: 55%;
}

.page-support__cta-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.page-support__cta-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-support__button--download {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 40px;
}

.page-support__button--download:hover {
  background-color: #e0a73d;
}

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

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

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

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

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

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

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__button {
    width: 100%;
    max-width: 300px;
  }

  .page-support__content-section,
  .page-support__contact-info-section,
  .page-support__resources-section,
  .page-support__cta-section {
    padding: 40px 15px;
  }

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

  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

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

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

  .page-support__contact-icon {
    width: 200px; /* Maintain minimum size */
  }

  .page-support__cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

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

  .page-support__cta-text-content {
    width: 100%;
  }

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

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

  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-support__card-title {
    font-size: 1.3em;
  }

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