.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Main dark background */
}

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

.page-support__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Darker gradient for hero */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__title {
  font-size: 3.5em;
  color: #E0B95B; /* Accent gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #D0D0D0;
}

.page-support__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__section {
  padding: 60px 0;
  text-align: center;
}

.page-support__section:nth-of-type(even) {
  background-color: #2a2a40; /* Slightly lighter dark for alternating sections */
}

.page-support__section-title {
  font-size: 2.5em;
  color: #E0B95B; /* Accent gold for section titles */
  margin-bottom: 40px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B95B;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__section-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-support__faq-item {
  background-color: #2a2a40;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  background-color: #3a3a5e; /* Darker background for question button */
  color: #E0B95B;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question:hover {
  background-color: #4a4a70;
}

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

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

.page-support__faq-answer {
  padding: 0 25px;
  background-color: #2a2a40;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-support__faq-answer p {
  padding: 15px 0;
  color: #D0D0D0;
  font-size: 1em;
}

/* Channel List Section */
.page-support__channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__channel-item {
  background-color: #2a2a40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__channel-item:hover {
  transform: translateY(-5px);
  background-color: #3a3a5e;
}

.page-support__channel-title {
  font-size: 1.8em;
  color: #E0B95B;
  margin-bottom: 15px;
}

.page-support__channel-title a {
  color: inherit;
  text-decoration: none;
}

.page-support__channel-title a:hover {
  text-decoration: underline;
}

.page-support__channel-desc {
  color: #D0D0D0;
  font-size: 1.1em;
  margin-bottom: 25px;
  min-height: 80px; /* Ensure consistent height for descriptions */
}

/* Buttons */
.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__btn--primary {
  background-color: #E0B95B; /* Accent gold */
  color: #1A1A2E; /* Dark text on gold */
  border: 2px solid #E0B95B;
}

.page-support__btn--primary:hover {
  background-color: #f0c96b;
  color: #000;
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #E0B95B; /* Gold text */
  border: 2px solid #E0B95B;
}

.page-support__btn--secondary:hover {
  background-color: #E0B95B;
  color: #1A1A2E;
}

/* CTA Section */
.page-support__cta {
  background-color: #1A1A2E;
  padding: 80px 0;
}

.page-support__cta .page-support__section-title {
  color: #E0B95B;
}

.page-support__cta .page-support__description {
  font-size: 1.3em;
  color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__title {
    font-size: 2.5em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__description {
    font-size: 1em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__channel-list {
    grid-template-columns: 1fr;
  }
  .page-support__channel-desc {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__hero,
  .page-support__section,
  .page-support__cta {
    padding: 40px 0;
  }
  .page-support__container {
    padding: 15px;
  }
}