.page-support {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero section */
  color: #ffffff;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 600px;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.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;
  font-size: 1.1em;
}

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

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

.page-support__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.page-support__button--tertiary:hover {
  background-color: #1a1a1a;
  border-color: #e0a53b;
}

.page-support__section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-support__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

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

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

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

.page-support__feature-card,
.page-support__contact-card,
.page-support__guide-card,
.page-support__legal-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  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__feature-card:hover,
.page-support__contact-card:hover,
.page-support__guide-card:hover,
.page-support__legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__feature-title,
.page-support__contact-card-title,
.page-support__guide-card-title,
.page-support__legal-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__guide-card-title a,
.page-support__legal-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__guide-card-title a:hover,
.page-support__legal-card-title a:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-support__feature-description,
.page-support__contact-card-description,
.page-support__guide-card-description,
.page-support__legal-card-description {
  font-size: 1em;
  color: #666666;
}

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

.page-support__faq-image,
.page-support__contact-image,
.page-support__guide-image {
  display: block;
  margin: 0 auto 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-categories {
  margin-top: 40px;
}

.page-support__faq-category-title {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-support__faq-list {
  list-style: none;
  padding: 0;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-support__faq-item strong {
  display: block;
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-support__faq-item p {
  font-size: 1em;
  color: #555555;
  margin-top: 10px;
  display: none; /* Initially hidden, toggled by JS */
}

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

.page-support__cta-box {
  background-color: #000000;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
}

.page-support__cta-text {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

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

.page-support__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-support__responsible-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-support__responsible-item strong {
  color: #000000;
}

.page-support__final-cta {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.page-support__final-cta .page-support__section-title {
  color: #FCBC45;
}

.page-support__final-cta .page-support__section-intro {
  color: #f0f0f0;
}

.page-support__final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__hero-container {
    padding: 60px 15px;
    min-height: 450px;
  }

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

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

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

  .page-support__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

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

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

  .page-support__features-grid,
  .page-support__contact-grid,
  .page-support__guide-grid,
  .page-support__legal-grid {
    grid-template-columns: 1fr;
  }

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

  /* Enforce image responsiveness for content area images */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

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

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

  .page-support__cta-box {
    padding: 30px 20px;
  }

  .page-support__cta-text {
    font-size: 1.1em;
  }

  .page-support__final-cta-buttons {
    flex-direction: column;
  }
}