.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color, #333333);
  background-color: var(--background-color, #ffffff);
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  color: #ffffff;
}

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

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

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-support__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

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

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

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

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-support__channels-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-section,
.page-support__commitment-section,
.page-support__video-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-support__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-support__dark-bg .page-support__section-title,
.page-support__dark-bg .page-support__section-description {
  color: #ffffff;
}

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

.page-support__medium-bg {
  background-color: #f5f5f5;
  color: #333333;
}

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

.page-support__channel-card,
.page-support__guide-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-support__channel-card:hover,
.page-support__guide-card:hover {
  transform: translateY(-5px);
}

.page-support__channel-icon,
.page-support__guide-image {
  width: 100%;
  height: auto;
  max-width: 150px; /* Adjusted for larger icons, still content images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__channel-title,
.page-support__guide-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-support__channel-title a,
.page-support__guide-title a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-support__channel-description,
.page-support__guide-description {
  font-size: 1em;
  color: #555555;
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7fd;
  border-bottom: 1px solid #d0eaf7;
  list-style: none; /* For details summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 40px;
  border-radius: 10px;
  background-color: #000000;
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-support__contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  align-items: flex-start;
}

.page-support__contact-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__form-group {
  margin-bottom: 20px;
}

.page-support__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333333;
}

.page-support__form-input,
.page-support__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  color: #333333;
  background-color: #fcfcfc;
}

.page-support__form-textarea {
  resize: vertical;
}

.page-support__form-submit-btn {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__form-submit-btn:hover {
  background-color: #1a7bbd;
}

.page-support__contact-info {
  background-color: #eaf7fd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-support__contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-support__contact-info li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-support__contact-info strong {
  color: #26A9E0;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  object-fit: cover;
  display: block;
}

.page-support__commitment-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__commitment-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-support__commitment-text p {
  margin-bottom: 15px;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__contact-content {
    grid-template-columns: 1fr;
  }
  .page-support__commitment-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__commitment-section,
  .page-support__video-section {
    padding: 40px 15px !important;
  }

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

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-support__hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .page-support__channels-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__channel-card,
  .page-support__guide-card {
    padding: 20px;
  }

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

  .page-support__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-support__form-submit-btn {
    width: 100% !important;
  }

  .page-support__contact-info ul {
    margin-top: 15px;
  }

  .page-support__contact-info li {
    font-size: 1em;
  }

  .page-support__commitment-image {
    max-width: 200px;
  }

  /* Force responsive images */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Force responsive videos */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video container mobile adaptation */
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px !important; /* Content sections already have padding */
    padding-right: 0px !important; /* Content sections already have padding */
    overflow: hidden !important;
  }

  /* Ensure main content containers have padding */
  .page-support__hero-section .page-support__hero-content,
  .page-support__channels-section .page-support__section-title,
  .page-support__channels-section .page-support__section-description,
  .page-support__faq-section .page-support__section-title,
  .page-support__faq-section .page-support__section-description,
  .page-support__guides-section .page-support__section-title,
  .page-support__guides-section .page-support__section-description,
  .page-support__video-section .page-support__section-title,
  .page-support__video-section .page-support__section-description,
  .page-support__contact-section .page-support__section-title,
  .page-support__contact-section .page-support__section-description,
  .page-support__contact-content,
  .page-support__commitment-section .page-support__section-title,
  .page-support__commitment-section .page-support__commitment-content {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  
  /* Specific adjustment for video section padding top on mobile if needed, but shared.css handles body padding */
  /* .page-support__video-section { padding-top: var(--header-offset, 120px) !important; } */
}

/* Ensure all content sections have proper max-width and padding */
.page-support__channels-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__contact-section,
.page-support__commitment-section,
.page-support__video-section {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-support__hero-section .page-support__hero-content,
.page-support__channels-section .page-support__channels-grid,
.page-support__faq-section .page-support__faq-list,
.page-support__guides-section .page-support__guides-grid,
.page-support__contact-section .page-support__contact-content,
.page-support__commitment-section .page-support__commitment-content,
.page-support__video-section .page-support__video-wrapper {
  max-width: 1200px; /* Inner content max-width */
  margin-left: auto;
  margin-right: auto;
}

/* Color contrast safety for specific elements */
.page-support p, .page-support li {
  color: #333333; /* Default text color for readability on light backgrounds */
}

.page-support__dark-bg p, .page-support__dark-bg li {
  color: #ffffff; /* White text on dark backgrounds */
}

.page-support__channel-card, .page-support__guide-card {
  color: #333333;
}

.page-support__faq-answer {
  color: #555555;
}

.page-support__contact-form label, .page-support__contact-form input, .page-support__contact-form textarea {
  color: #333333;
}

.page-support__contact-info p, .page-support__contact-info li {
  color: #333333;
}

.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
  color: #888888;
  opacity: 1;
}