.page-support {
  background-color: var(--bg-color, #0D0E12); /* Default from shared, but ensure it's dark */
  color: var(--text-main-color, #FFF3E6); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Match body background */
  overflow: hidden; /* Ensure no overflow from image */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit image height */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and text */
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

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

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  color: #FFB04D; /* Glow color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-support__description {
  font-size: 1.15rem;
  color: #FFF3E6; /* Main text color */
  margin-bottom: 30px;
}

.page-support__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
  box-sizing: border-box;
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

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

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

/* General Section Styles */
.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #FFB04D;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-support__text-block {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__dark-section {
  background-color: #0D0E12; /* Deep dark background */
  padding: 60px 0;
}

.page-support__light-bg {
  background-color: #17191F; /* Card BG as light background for contrast */
  padding: 60px 0;
  color: #FFF3E6; /* Ensure text is light on this slightly lighter dark background */
}

/* Channels Section */
.page-support__channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__channel-item {
  background-color: #0D0E12; /* Darker background for items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border color */
}

.page-support__channel-icon {
  width: 100%; /* Ensure image fills card */
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: saturate(1.2) brightness(1.1); /* Enhance colors slightly */
}

.page-support__channel-title {
  font-size: 1.5rem;
  color: #FF8C1A; /* Main brand color */
  margin-bottom: 10px;
}

.page-support__channel-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

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

.page-support__issue-card {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to bottom */
}

.page-support__issue-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 0 auto 20px auto;
  filter: saturate(1.2) brightness(1.1);
}

.page-support__issue-title {
  font-size: 1.4rem;
  color: #FFA53A; /* Accent color */
  margin-bottom: 15px;
}

.page-support__issue-description {
  font-size: 0.95rem;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

.page-support__link-button {
  background-color: #FF8C1A;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push button to bottom */
  align-self: center;
}

.page-support__link-button:hover {
  background-color: #D96800;
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #0D0E12; /* Dark background for FAQ items */
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #FFB04D; /* Glow color for question */
  cursor: pointer;
  background-color: #17191F; /* Slightly lighter background for question bar */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none;
}

.page-support__faq-question:hover {
  background-color: #2a2e3a; /* Darker hover */
}

.page-support__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A;
}

.page-support__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #FFF3E6;
  background-color: #0D0E12; /* Match item background */
}

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

.page-support__faq-answer p:last-child {
  margin-bottom: 0;
}

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

.page-support__commitment-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  text-align: center;
}

.page-support__commitment-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: saturate(1.2) brightness(1.1);
}

.page-support__commitment-title {
  font-size: 1.4rem;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-support__commitment-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

/* Links */
.page-support__link {
  color: #FF8C1A; /* Brand color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-support__link:hover {
  text-decoration: underline;
  color: #FFA53A;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-bottom: 40px;
  }

  .page-support__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-support__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-support__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important; /* Force full width on mobile */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-support__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-support__dark-section,
  .page-support__light-bg {
    padding: 40px 0;
  }

  .page-support__container {
    padding: 0 15px !important; /* Add padding for content */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__channel-item,
  .page-support__issue-card,
  .page-support__commitment-item {
    padding: 20px;
  }

  .page-support__channel-icon,
  .page-support__issue-icon,
  .page-support__commitment-icon {
    max-width: 100px;
  }

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

  .page-support__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.9rem;
  }
}