.page-support {
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherit from body or set explicitly if needed */
  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;
  padding: 100px 0 60px; /* Adjust padding-top if shared.css already handles header offset */
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-support__hero-section .page-support__container {
  z-index: 1;
  position: relative;
}

.page-support__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-support__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  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: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-support__btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-support__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #8B0000;
  transform: translateY(-3px);
}

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

.page-support__btn-secondary:hover {
  background-color: #ffffff;
  color: #8B0000;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Section Titles and Descriptions */
.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

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

/* Video Guide Section */
.page-support__video-guide-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  text-align: center;
}

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

.page-support__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2; /* Ensure it's above the video for click handling */
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  max-width: 100%; /* Ensure video is responsive */
}

/* Why Us Section */
.page-support__why-us-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-support__feature-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__feature-card:hover {
  transform: translateY(-10px);
  background-color: #2a2a2a;
}

.page-support__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__feature-text {
  color: #cccccc;
  font-size: 0.95em;
}

/* Common Issues Section */
.page-support__common-issues-section {
  padding: 80px 0;
  background-color: #8B0000;
}

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

.page-support__issue-card {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-support__issue-card:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

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

.page-support__issue-text {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support__text-link {
  color: #FFD700;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-support__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-support__cta-text {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 30px;
}

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

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #222222;
  color: #ffffff;
  font-size: 1.15em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #333333;
}

.page-support__faq-title {
  margin: 0;
  color: #FFD700;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  font-size: 1em;
}

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

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

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

/* Contact CTA Section */
.page-support__contact-cta-section {
  padding: 80px 0;
  background-color: #8B0000;
}

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

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

.page-support__method-card:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.page-support__method-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__method-text {
  color: #cccccc;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__hero-section {
    padding: 80px 0 40px; /* Adjust for mobile header offset */
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

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

  .page-support__intro-text {
    font-size: 1em;
  }

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

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

  .page-support__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

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

  .page-support__video-guide-section,
  .page-support__why-us-section,
  .page-support__common-issues-section,
  .page-support__faq-section,
  .page-support__contact-cta-section {
    padding: 40px 0;
  }

  .page-support__video-wrapper,
  .page-support__features-grid,
  .page-support__issue-cards-grid,
  .page-support__contact-methods {
    margin-top: 30px;
  }

  .page-support__feature-card,
  .page-support__issue-card,
  .page-support__method-card {
    padding: 20px;
  }

  .page-support__feature-icon,
  .page-support__method-icon {
    width: 80px;
    height: 80px;
  }

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

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

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

  /* Force responsive images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Image/Video containers mobile adaptation */
  .page-support__container,
  .page-support__video-wrapper,
  .page-support__features-grid,
  .page-support__issue-cards-grid,
  .page-support__contact-methods,
  .page-support__cta-buttons,
  .page-support__faq-list {
    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 */
  }

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

  .page-support__video-guide-section {
    padding-top: var(--header-offset, 120px) !important; /* Video section must respect header offset on mobile */
  }
}