.page-support {
  color: #f0f0f0; /* Light text for assumed dark body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #ffffff;
}

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

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

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

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

.page-support__tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e0e0e0;
}

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

.page-support__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  white-space: nowrap;
}

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

.page-support__btn--primary:hover {
  background-color: #e0a030;
  border-color: #e0a030;
}

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

.page-support__btn--secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

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

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

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

.page-support__faq-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-support__faq-item {
  background-color: #0d0d0d;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #FCBC45;
  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.5em;
  line-height: 1;
  color: #FCBC45;
}

.page-support__faq-item.active .page-support__faq-question::after {
  content: '-';
}

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

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

.page-support__faq-answer p {
  margin-bottom: 10px;
}

.page-support__more-help {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #333333;
}

.page-support__more-help p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-support__contact-methods-section {
  background-color: #000000;
  padding: 60px 0;
}

.page-support__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-support__method-card {
  background-color: #0d0d0d;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-support__method-icon {
  width: 250px; /* Min 200px */
  height: 250px; /* Min 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

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

.page-support__method-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__resources-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-support__resource-card {
  background-color: #0d0d0d;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-support__resource-title {
  font-size: 1.4em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-support__resource-description {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
}

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

@media (max-width: 768px) {
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__tagline {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    width: 100%;
    padding: 12px 25px;
  }
  .page-support__faq-grid, .page-support__methods-grid, .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__method-icon {
    width: 200px; /* Min 200px */
    height: 200px; /* Min 200px */
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__method-title {
    font-size: 1.3em;
  }
  .page-support__resource-title {
    font-size: 1.2em;
  }
  .page-support__container {
    padding: 20px 15px;
  }
  .page-support__faq-item, .page-support__method-card, .page-support__resource-card {
    padding: 20px;
  }
}