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

.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: -1;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  color: #FF4500;
  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-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__faq-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
}

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

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

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

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

.page-support__section {
  padding: 80px 0;
  background-color: var(--dark-bg, #1a1a1a);
}

.page-support__section:nth-of-type(even) {
  background-color: var(--darker-bg, #0d0d0d);
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #FF4500;
  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 auto;
}

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

.page-support__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-support__channel-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-support__channel-text {
  color: #cccccc;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Process Steps */
.page-support__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.page-support__process-step {
  background-color: rgba(30, 144, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__step-icon {
  background-color: #FF4500;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-support__step-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-support__step-text {
  color: #cccccc;
  font-size: 0.95em;
}

/* FAQ Section */
.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

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

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

.page-support__faq-item-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.page-support__faq-toggle {
  font-size: 1.8em;
  color: #FF4500;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.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: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

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

.page-support__faq-btn {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #1E90FF;
  color: #ffffff;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.page-support__faq-btn:hover {
  background-color: #177ddc;
}

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

.page-support__commitment-item {
  background-color: rgba(30, 144, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-support__commitment-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__commitment-item-title {
  font-size: 1.4em;
  color: #FF4500;
  margin-bottom: 15px;
}

.page-support__commitment-text {
  color: #cccccc;
  font-size: 0.95em;
  flex-grow: 1;
}

/* Advice Section */
.page-support__advice-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-support__advice-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #1E90FF;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1.05em;
}

.page-support__advice-item strong {
  color: #FF4500;
}

/* Final CTA */
.page-support__cta-final {
  text-align: center;
  padding: 80px 0;
  background-color: var(--dark-bg, #1a1a1a);
}

.page-support__cta-final .page-support__section-title {
  margin-bottom: 30px;
}

.page-support__cta-final .page-support__section-description {
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .page-support__hero-section {
    height: 500px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__faq-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-support__section {
    padding: 60px 0;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__container {
    padding: 0 15px;
  }

  /* Mobile image responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__channels-grid,
  .page-support__process-steps,
  .page-support__commitment-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-support__channel-card,
  .page-support__process-step,
  .page-support__commitment-item {
    padding: 20px;
  }

  .page-support__channel-image,
  .page-support__commitment-image {
    height: 150px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-item-title {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    padding: 10px 20px;
  }

  /* Fixed header offset for mobile, if shared doesn't handle body padding */
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important; 
  }
  .page-support__channels,
  .page-support__process,
  .page-support__faq,
  .page-support__commitment,
  .page-support__advice,
  .page-support__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-support__channels .page-support__container,
  .page-support__process .page-support__container,
  .page-support__faq .page-support__container,
  .page-support__commitment .page-support__container,
  .page-support__advice .page-support__container,
  .page-support__cta-final .page-support__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__section-description {
    font-size: 0.85em;
  }
}