.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); /* Account for fixed header */
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #000000; /* Main color as background for hero text area */
  padding: 80px 0;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF; /* White text for dark hero background */
  max-width: 900px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

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

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

.page-support__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register color */
  border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section,
.page-support__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Auxiliary color */
}

.page-support__faq-section {
  background-color: #f5f5f5;
}

.page-support__faq-image {
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 800px;
  height: 600px;
  max-width: 100%;
  height: auto;
}

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

.page-support__faq-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-support__faq-question {
  font-size: 1.4em;
  color: #000000; /* Main color */
  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.2em;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-support__faq-answer.page-support__faq-answer--active {
  max-height: 200px; /* Adjust as needed for content */
}

.page-support__faq-answer p {
  margin-bottom: 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__contact-image {
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 800px;
  height: 600px;
  max-width: 100%;
  height: auto;
}

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

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

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

.page-support__method-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  min-height: 50px;
}

.page-support__resources-image {
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 600px;
  height: 400px;
  max-width: 100%;
  height: auto;
}

.page-support__resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-support__resource-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

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

.page-support__resource-card-description {
  font-size: 0.95em;
  color: #666666;
}

.page-support__cta-section {
  background-color: #000000; /* Main color */
  text-align: center;
  color: #FFFFFF;
}

.page-support__cta-image {
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 1000px;
  height: 563px;
  max-width: 100%;
  height: auto;
  opacity: 0.8;
}

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

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title,
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__resources-image,
  .page-support__cta-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px);
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions,
  .page-support__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__section-intro,
  .page-support__cta-description {
    font-size: 0.95em;
  }
  .page-support__faq-list,
  .page-support__contact-methods,
  .page-support__resource-cards {
    grid-template-columns: 1fr;
  }
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__resources-image,
  .page-support__cta-image {
    max-width: 100%;
    height: auto;
  }
  /* Enforce content image sizing for mobile */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__method-title {
    font-size: 1.4em;
  }
  .page-support__resource-card-title {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-section {
    padding: 60px 0;
  }
  .page-support__button {
    width: 90%;
  }
  .page-support__section-title,
  .page-support__cta-title {
    font-size: 1.5em;
  }
  .page-support__faq-item,
  .page-support__contact-method-card,
  .page-support__resource-card {
    padding: 20px;
  }
}