.page-support {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  background-color: #1A2B4C; /* Main brand color for hero background */
  color: #ffffff;
  overflow: hidden; /* Prevent image overflow */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  margin-right: 40px;
}

.page-support__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
  filter: brightness(0.7); /* Darken image for better text contrast */
}

/* General Section Styling */
.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-support__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for section titles */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-support__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0; /* Light text for dark sections */
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: 80px 0;
  background-color: #1A2B4C; /* Dark brand color */
  color: #ffffff;
}

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

.page-support__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-support__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-support__content-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Channels Section */
.page-support__channels-section {
  padding: 80px 0;
  background-color: #0d1a33; /* Slightly darker than main brand color */
  color: #ffffff;
}

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

.page-support__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__channel-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 25px;
}

/* Issues Section */
.page-support__issues-section {
  padding: 80px 0;
  background-color: #1A2B4C;
  color: #ffffff;
}

.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: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__issue-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-support__issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-support__issue-list li {
  margin-bottom: 10px;
}

.page-support__list-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
  display: block; /* Ensure full clickable area */
  padding: 5px 0;
}

.page-support__list-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Commitment Section */
.page-support__commitment-section {
  padding: 80px 0;
  background-color: #0d1a33;
  color: #ffffff;
}

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

.page-support__commitment-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__commitment-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-support__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-support__inline-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #1A2B4C;
  color: #ffffff;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 10px;
  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-title {
  font-size: 1.25em;
  color: #FFD700;
  margin: 0;
}

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

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px; /* Initial padding, will expand */
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.page-support__faq-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-top: 0;
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* CTA Section */
.page-support__cta-section {
  padding: 80px 0;
  background-color: #0d1a33;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-support__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-support__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.6);
  z-index: 1;
}

/* Button Styles (General) */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-support__btn-primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A2B4C; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-support__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #1A2B4C;
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color text */
  border: 2px solid #FFD700;
}

.page-support__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

/* Dark background sections */
.page-support__dark-section {
  background-color: #1A2B4C; /* Main brand dark blue */
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-section {
    flex-direction: column;
    text-align: center;
    min-height: 500px;
    padding: 60px 15px;
  }

  .page-support__hero-content {
    margin-right: 0;
    margin-bottom: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

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

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

  .page-support__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-support__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-support__why-choose-section,
  .page-support__channels-section,
  .page-support__issues-section,
  .page-support__commitment-section,
  .page-support__faq-section,
  .page-support__cta-section {
    padding: 50px 0;
  }

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

  /* All containers with images/content */
  .page-support__container,
  .page-support__hero-section,
  .page-support__why-choose-section,
  .page-support__channels-section,
  .page-support__issues-section,
  .page-support__commitment-section,
  .page-support__faq-section,
  .page-support__cta-section,
  .page-support__hero-content,
  .page-support__hero-cta-buttons,
  .page-support__features-grid,
  .page-support__feature-item,
  .page-support__channels-grid,
  .page-support__channel-card,
  .page-support__issues-grid,
  .page-support__issue-card,
  .page-support__commitment-grid,
  .page-support__commitment-item,
  .page-support__faq-list,
  .page-support__faq-item,
  .page-support__cta-content,
  .page-support__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  
  /* Specific padding adjustments for elements that might have less padding on desktop */
  .page-support__faq-question,
  .page-support__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-support__faq-item.active .page-support__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 15px !important; /* Adjust for mobile */
  }

  .page-support__hero-image-wrapper,
  .page-support__cta-image {
    position: absolute !important; /* Ensure absolute positioning for background images */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}