.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
}

.page-support__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%);
}

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

.page-support__section-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  text-align: center;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

.page-support__card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-support__light-bg .page-support__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__channel-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__channel-title,
.page-support__issue-title,
.page-support__policy-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__channel-text,
.page-support__issue-list,
.page-support__policy-text {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__light-bg .page-support__channel-text,
.page-support__light-bg .page-support__issue-list,
.page-support__light-bg .page-support__policy-text {
  color: #555555;
}

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

.page-support__issue-list li {
  margin-bottom: 10px;
}

.page-support__issue-list a,
.page-support__policy-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__issue-list a:hover,
.page-support__policy-link:hover {
  color: #ffe87a;
  text-decoration: underline;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__hero-cta-button,
.page-support__channel-button,
.page-support__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-support__btn-primary,
.page-support__hero-cta-button {
  background-color: #FFD700;
  color: #1a1a1a;
  border: 2px solid #FFD700;
}

.page-support__btn-primary:hover,
.page-support__hero-cta-button:hover {
  background-color: #ffe87a;
  border-color: #ffe87a;
}

.page-support__btn-secondary,
.page-support__channel-button {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn-secondary:hover,
.page-support__channel-button:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

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

.page-support__faq-section {
  padding: 60px 20px;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(255, 215, 0, 0.1);
  cursor: pointer;
  color: #FFD700;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-support__faq-title {
  margin: 0;
  font-size: 1.1em;
  color: #FFD700;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

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

.page-support__faq-link {
  color: #FFD700;
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

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

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section {
    padding: 40px 15px;
  }

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

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

  .page-support__container {
    padding: 30px 15px;
  }

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

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

  .page-support__channels-grid,
  .page-support__issues-grid,
  .page-support__policy-grid {
    grid-template-columns: 1fr;
  }

  .page-support__card {
    padding: 20px;
  }

  .page-support__channel-title,
  .page-support__issue-title,
  .page-support__policy-title {
    font-size: 1.3em;
  }

  .page-support__faq-section {
    padding: 40px 15px;
  }

  .page-support__faq-question {
    padding: 12px 15px;
  }

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

  .page-support__faq-answer {
    padding: 0 15px;
  }

  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 15px;
  }

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

  .page-support__cta-button,
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-image,
  .page-support__channel-icon,
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__channels-section,
  .page-support__issues-section,
  .page-support__policy-section,
  .page-support__faq-section,
  .page-support__contact-cta-section,
  .page-support__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Handled by container */
    /* padding-right: 15px; */ /* Handled by container */
    overflow: hidden !important;
  }

  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}