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

.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.page-support__btn {
  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;
  white-space: nowrap;
}

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

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

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

.page-support__btn--secondary:hover {
  background-color: #f0f0f0;
  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; /* Subtle background image */
}

.page-support__faq-section {
  background-color: #FFFFFF; /* Light background */
  color: #333333;
  padding: 80px 20px;
}

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

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

.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.4em;
  color: #000000;
  margin-bottom: 15px;
}

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

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

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

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

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

.page-support__contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-support__app-download-cta {
  background-color: #FCBC45; /* Accent background for CTA */
  color: #000000;
  padding: 60px 20px;
}

.page-support__app-download-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.page-support__app-icon {
  width: 200px; /* Min size 200x200px */
  height: 200px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.page-support__app-text {
  max-width: 600px;
  text-align: left;
}

.page-support__app-text .page-support__section-title {
  color: #000000;
  margin-bottom: 15px;
  text-align: left;
}

.page-support__app-text .page-support__section-description {
  color: #333333;
  margin-bottom: 30px;
  text-align: left;
}

.page-support__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-bottom: 50px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-options {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__app-download-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .page-support__app-text {
    text-align: center;
  }
  .page-support__app-text .page-support__section-title,
  .page-support__app-text .page-support__section-description {
    text-align: center;
  }
  .page-support__app-icon {
    width: 200px;
    height: 200px;
  }
  /* Ensure content area images are responsive */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-item {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
}