.page-support {
  color: #ffffff; /* Dark body background #0a0a0a, so use light text */
  background-color: #0a0a0a; /* Ensure page content matches body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding to the bottom */
}

.page-support__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  color: #ffffff;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  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__hero-image-wrapper {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 0;
  margin-top: 30px;
}

.page-support__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-support__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-support__channels-section, .page-support__guides-section, .page-support__policies-section, .page-support__faq-section, .page-support__commitment-section, .page-support__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-support__channel-item, .page-support__guide-card, .page-support__policy-item, .page-support__commitment-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__channel-item:hover, .page-support__guide-card:hover, .page-support__policy-item:hover, .page-support__commitment-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-support__channel-image, .page-support__guide-image, .page-support__commitment-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__commitment-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #26A9E0;
  padding: 5px;
}

.page-support__channel-title, .page-support__guide-title, .page-support__policy-title, .page-support__commitment-subtitle {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__policy-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__policy-title a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-support__channel-description, .page-support__guide-description, .page-support__policy-description, .page-support__commitment-description {
  color: #f0f0f0;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__btn-primary, .page-support__btn-secondary, .page-support__btn-tertiary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-support__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
  background: #1a7bb0;
  border-color: #1a7bb0;
  transform: translateY(-3px);
}

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

.page-support__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-support__btn-tertiary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-support__btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #26A9E0;
}

.page-support__btn-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: auto; /* Push to bottom of flex container */
}

.page-support__btn-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

.page-support__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  transition: background-color 0.3s ease;
}

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

.page-support__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
  font-weight: 600;
}

.page-support__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

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

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

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

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

.page-support__faq-answer .page-support__btn-link {
  margin-top: 10px;
}

.page-support__cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #1a7bb0, #26A9E0);
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is correct */
  }
  .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__btn-primary, .page-support__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__channels-section, .page-support__guides-section, .page-support__policies-section, .page-support__faq-section, .page-support__commitment-section, .page-support__cta-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-support__channel-grid, .page-support__guide-grid, .page-support__policy-grid, .page-support__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__channel-item, .page-support__guide-card, .page-support__policy-item, .page-support__commitment-item {
    padding: 25px;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Mobile image and video responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__hero-image-wrapper, .page-support__channel-item, .page-support__guide-card, .page-support__policy-item, .page-support__commitment-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-support__hero-image {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__cta-title {
    font-size: 1.6em;
  }
  .page-support__hero-buttons {
    gap: 10px;
  }
  .page-support__btn-primary, .page-support__btn-secondary, .page-support__btn-tertiary {
    padding: 10px 15px;
    font-size: 0.95em;
  }
  .page-support__faq-question h3 {
    font-size: 1em;
  }
}