.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

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

.page-support__hero-image-wrapper {
  width: 100%;
  height: 600px; /* Adjust as needed */
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-support__hero-content {
  position: relative;
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -150px; /* Pull content up to overlap image slightly for visual effect, but not text over image */
  background-color: #17191F; /* Card BG */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1;
  border: 1px solid #A84F0C; /* Border */
}

.page-support__hero-title {
  color: #FFF3E6; /* Text Main */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
}

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

.page-support__hero-cta-button,
.page-support__video-cta-button,
.page-support__channel-cta-button,
.page-support__cta-final-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support__hero-cta-button:hover,
.page-support__video-cta-button:hover,
.page-support__channel-cta-button:hover,
.page-support__cta-final-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
}

.page-support__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
}

.page-support__video-title {
  color: #FFF3E6; /* Text Main */
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 15px;
  text-align: center;
}

.page-support__video-description {
  color: #FFF3E6;
  font-size: 1.05em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
}

.page-support__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #A84F0C; /* Border */
}

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

.page-support__section {
  padding: 60px 0;
  box-sizing: border-box;
}

.page-support__section:nth-of-type(even) {
  background-color: #17191F; /* Card BG for alternating sections */
}

.page-support__heading {
  color: #FFA53A; /* Auxiliary color */
  font-size: clamp(26px, 3.5vw, 42px);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-support__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #D96800; /* Deep Orange */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__paragraph {
  color: #FFF3E6;
  margin-bottom: 20px;
  font-size: 1.05em;
  text-align: justify;
}

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

.page-support__channel-card,
.page-support__issue-card,
.page-support__commitment-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-card:hover,
.page-support__issue-card:hover,
.page-support__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__channel-icon,
.page-support__commitment-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-support__channel-title,
.page-support__issue-title,
.page-support__commitment-title {
  color: #FFA53A; /* Auxiliary color */
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__channel-description,
.page-support__commitment-description {
  color: #FFF3E6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

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

.page-support__issue-list li {
  color: #FFF3E6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.page-support__issue-list li::before {
  content: '•';
  color: #FFA53A;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

.page-support__issue-list li strong {
  color: #FFA53A;
}

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

.page-support__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #FFF3E6;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

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

.page-support__faq-answer {
  padding: 0 25px 20px;
  color: #FFF3E6;
  font-size: 1em;
  text-align: justify;
}

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

.page-support__faq-image {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
}

.page-support__dark-bg {
  background-color: #FF8C1A; /* Main Color */
  color: #ffffff; /* White text for contrast */
}

.page-support__commitment-section {
  background-color: #FF8C1A;
  color: #ffffff;
}

.page-support__commitment-section .page-support__heading {
  color: #ffffff;
}

.page-support__commitment-section .page-support__heading::after {
  background: #ffffff;
}

.page-support__commitment-section .page-support__paragraph {
  color: #ffffff;
}

.page-support__commitment-section .page-support__commitment-title {
  color: #ffffff;
}

.page-support__commitment-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-support__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-support__tips-list li {
  color: #FFF3E6;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
  text-align: justify;
}

.page-support__tips-list li::before {
  content: '✓';
  color: #FFA53A;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
}

.page-support__tips-list li strong {
  color: #FFA53A;
}

.page-support__conclusion-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-support__cta-final-button {
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__hero-image-wrapper {
    height: 450px;
  }

  .page-support__hero-content {
    margin-top: -100px;
    padding: 30px;
  }

  .page-support__channels-grid,
  .page-support__issues-grid,
  .page-support__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-image-wrapper {
    height: 350px;
  }

  .page-support__hero-content {
    margin-top: -80px;
    padding: 25px;
  }

  .page-support__hero-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-support__heading {
    font-size: clamp(22px, 6vw, 32px);
  }

  .page-support__paragraph,
  .page-support__hero-description,
  .page-support__channel-description,
  .page-support__commitment-description,
  .page-support__issue-list li,
  .page-support__faq-answer p,
  .page-support__tips-list li {
    font-size: 0.95em;
  }

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

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

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

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

  /* Force responsive for images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Force responsive for video */
  .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: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-support__video-section {
    padding-top: 10px !important;
  }

  /* Force responsive for buttons */
  .page-support__hero-cta-button,
  .page-support__video-cta-button,
  .page-support__channel-cta-button,
  .page-support__cta-final-button,
  .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 !important;
    padding-right: 15px !important;
  }

  .page-support__channels-grid .page-support__channel-cta-button {
    margin-top: auto; /* Push button to bottom */
  }

  .page-support__channels-grid,
  .page-support__issues-grid,
  .page-support__commitment-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-support__channel-card,
  .page-support__issue-card,
  .page-support__commitment-item {
    margin: 0 15px; /* Adjust margin for single column */
  }
}