.page-support {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

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

.page-support__hero-section {
  background-color: #f0f0f0;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-support__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.page-support__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-support__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

.page-support__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

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

.page-support__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-support__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-support__faq-section,
.page-support__contact-options,
.page-support__resources-section,
.page-support__cta-section {
  padding: 60px 0;
}

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

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  width: 100%;
  background-color: #f9f9f9;
  color: #000000;
  padding: 18px 25px;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #f0f0f0;
}

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

.page-support__faq-question[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(0deg);
}

.page-support__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer p {
  padding-bottom: 15px;
  line-height: 1.6;
}

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

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

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

.page-support__faq-cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.page-support__contact-options {
  background-color: #f9f9f9;
}

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

.page-support__option-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__option-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

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

.page-support__option-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-support__button--card {
  background-color: #000000;
  color: #ffffff;
}

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

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

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

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-support__resource-title {
  font-size: 1.5em;
  color: #000000;
  padding: 20px 20px 10px;
}

.page-support__resource-text {
  font-size: 0.95em;
  line-height: 1.5;
  padding: 0 20px 20px;
}

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

.page-support__cta-section .page-support__section-title {
  color: #FCBC45;
}

.page-support__cta-section .page-support__button--primary {
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.2em;
  padding: 15px 35px;
  border-radius: 8px;
}

.page-support__cta-section .page-support__button--primary:hover {
  background-color: #e0a53a;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 120px);
  }
  .page-support__hero-section {
    padding: 60px 0;
  }
  .page-support__hero-content {
    width: 95%;
    padding: 20px;
  }
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__intro-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-description {
    font-size: 1em;
  }
  .page-support__options-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area images must not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__option-icon, .page-support__resource-image {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}