.page-support {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000; /* Dark background for the main page, from body background color */
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A, #000000); /* Using auxiliary and body background colors */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-support__hero-content {
  max-width: 800px;
}

.page-support__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__intro-text {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for CTA button */
  color: #1A1A1A; /* Auxiliary color (dark) text on primary (gold) button for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-support__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
}

.page-support__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Primary color for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-support__faq-item {
  background-color: #1a1a1a; /* Auxiliary color for card background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700; /* Primary color for accent */
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #FFD700; /* Primary color for question */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-support__faq-item.active .page-support__faq-question::after {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  font-size: 1.1em;
  color: #cccccc;
  display: none; /* Hidden by default */
  padding-top: 10px;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block; /* Shown when active */
}

.page-support__faq-answer a {
  color: #FFD700; /* Primary color for links */
  text-decoration: none;
}

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

.page-support__contact-section {
  padding: 60px 0;
  background-color: #1A1A1A; /* Auxiliary color for section background */
  text-align: center;
}

.page-support__contact-intro {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

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

.page-support__contact-card {
  background-color: #0d0d0d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FFD700; /* Primary color for accent */
}

.page-support__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Primary color for card title */
  margin-bottom: 15px;
}

.page-support__card-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 25px;
  min-height: 50px; /* Ensure consistent card height */
}

.page-support__card-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for card button */
  color: #1A1A1A; /* Auxiliary color (dark) text on primary (gold) button */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support__card-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-support__contact-image-wrapper {
  margin-top: 40px;
}

.page-support__contact-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-support__app-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #000000, #1A1A1A); /* Gradient using body background and auxiliary color */
  text-align: center;
}

.page-support__app-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-support__app-image-wrapper {
  margin-top: 40px;
}

.page-support__app-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__main-title {
    font-size: 2.5em;
  }
  .page-support__intro-text {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-support__faq-item {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__faq-answer {
    font-size: 0.95em;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__contact-card {
    padding: 25px;
  }
  .page-support__card-title {
    font-size: 1.5em;
  }
  .page-support__card-description {
    font-size: 1em;
  }
  .page-support__app-section {
    padding: 60px 0;
  }
  /* Content area images must not cause overflow */
  .page-support__hero-image, 
  .page-support__contact-image, 
  .page-support__app-image, 
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}