.page-support {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#121212) */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Hero Section */
.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: 20px;
  box-sizing: border-box;
}

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

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

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

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

/* Common Section Styles */
.page-support__section-title {
  font-size: 2.5em;
  color: #CC0000; /* Red for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

/* Dark Section Styling */
.page-support__dark-section {
  background-color: rgba(204, 0, 0, 0.1); /* Slightly tinted dark background */
  color: #ffffff;
}

/* Card Styles */
.page-support__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards in a grid have equal height */
  box-sizing: border-box;
}

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

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-support__btn-primary {
  background-color: #CC0000; /* Red */
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-support__btn-primary:hover {
  background-color: #FFD700; /* Gold */
  color: #CC0000;
  border-color: #FFD700;
}

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

.page-support__btn-secondary:hover {
  background-color: #FFD700; /* Gold */
  color: #CC0000;
  border-color: #FFD700;
}

.page-support__btn-link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-support__btn-link:hover {
  background-color: #FFD700;
  color: #CC0000;
}

/* Video Section */
.page-support__video-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  text-align: center;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-support__video-link {
  cursor: pointer;
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: 80px 20px;
}

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

.page-support__feature-icon {
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

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

.page-support__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Channels Section */
.page-support__channels-section {
  padding: 80px 20px;
}

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

.page-support__channel-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__channel-icon {
  width: 200px;
  height: 200px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px rgba(204, 0, 0, 0.5)); /* Red glow */
}

.page-support__channel-title {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-support__channel-text {
  font-size: 0.95em;
  color: #f0f0f0;
  flex-grow: 1; /* Pushes button to bottom */
}

/* Guides Section */
.page-support__guides-section {
  padding: 80px 20px;
}

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

.page-support__guide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__guide-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-support__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-support__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__guide-list li {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.page-support__guide-list li::before {
  content: '•';
  color: #CC0000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 20px;
}

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

.page-support__faq-item {
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.05); /* Lighter card background for FAQ */
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0; /* Remove padding from card, add to question/answer */
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(204, 0, 0, 0.2); /* Red tint for question background */
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(204, 0, 0, 0.4);
}

.page-support__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFD700;
}

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

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg); /* Plus to X for active state */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #e0e0e0;
  font-size: 1em;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to reveal content */
  padding: 15px 25px 25px 25px; /* Adjust padding for expanded state */
}

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


/* Commitment and Tips Section */
.page-support__commitment-tips-section {
  padding: 80px 20px;
}

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

.page-support__commitment-list,
.page-support__tips-list {
  list-style: none;
  padding: 0;
}

.page-support__commitment-list li,
.page-support__tips-list li {
  font-size: 1.05em;
  color: #e0e0e0;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-support__commitment-list li::before,
.page-support__tips-list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

/* Call to Action Section */
.page-support__cta-section {
  background-color: #CC0000; /* Red background for CTA */
  padding: 60px 20px;
  text-align: center;
}

.page-support__cta-content {
  max-width: 800px;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-support__cta-description {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 40px;
}

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

/* General Image Styles (Global for .page-support) */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
  }

  .page-support__hero-section {
    height: 500px;
  }

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

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

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

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

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

  .page-support__feature-icon,
  .page-support__channel-icon {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-support__feature-title,
  .page-support__channel-title {
    font-size: 1.3em;
  }

  .page-support__guide-title {
    font-size: 1.4em;
  }

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

  .page-support__faq-question h3 {
    font-size: 1.1em;
  }

  .page-support__faq-answer {
    padding: 10px 20px 20px 20px;
    font-size: 0.95em;
  }

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

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

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

  /* Image responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Video responsiveness */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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: var(--header-offset, 120px) !important;
  }
}