.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a requires light text */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-support__hero-section {
  padding: var(--header-offset, 120px) 0 60px 0; /* Apply header offset */
  text-align: center;
  background: linear-gradient(135deg, #B80000 0%, #8b0000 100%);
  color: #ffffff;
}

.page-support__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-support__btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

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

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

.page-support__btn-tertiary {
  background-color: #B80000;
  color: #ffffff;
  border: 1px solid #B80000;
}

.page-support__btn-tertiary:hover {
  background-color: #a00000;
  border-color: #a00000;
}

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

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

.page-support__video-section {
  background-color: #1a1a1a;
  padding: 60px 0;
  text-align: center;
}

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

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

.page-support__video-link {
  display: block;
  z-index: 10;
  text-decoration: none;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

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

.page-support__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-support__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

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

.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: #f0f0f0;
  background-color: #2a2a2a;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

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

.page-support__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-support__faq-answer a:hover {
  color: #e0b800;
}

.page-support__guides-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

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

.page-support__guide-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
}

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

.page-support__guide-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-support__guide-card-title {
  font-size: 1.4em;
  padding: 15px 20px 10px;
  color: #FFD700;
}

.page-support__guide-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__guide-card-title a:hover {
  text-decoration: underline;
}

.page-support__guide-card-text {
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-support__guide-card .page-support__btn-tertiary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

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

.page-support__contact-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-support__contact-card-text {
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__contact-card .page-support__btn-primary {
  width: 100%;
}

.page-support__policies-section {
  padding: 60px 0;
  background-color: #B80000;
  color: #ffffff;
}

.page-support__policies-section .page-support__section-title,
.page-support__policies-section .page-support__section-description {
  color: #ffffff;
}

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

.page-support__policy-card {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s ease;
  display: block;
}

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

.page-support__policy-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-support__policy-card p {
  font-size: 0.95em;
  margin: 0;
}

.page-support__assurance-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

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

.page-support__feature-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
}

.page-support__feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

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

.page-support__final-cta-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #8b0000 0%, #B80000 100%);
  color: #ffffff;
}

.page-support__final-cta-section .page-support__section-title,
.page-support__final-cta-section .page-support__section-description {
  color: #ffffff;
}

/* General text styling for contrast */
.page-support h1, .page-support h2, .page-support h3, .page-support h4, .page-support h5, .page-support h6 {
  color: #FFD700;
}

.page-support p, .page-support li, .page-support span {
  color: #f0f0f0;
}

/* Ensure links within text are visible */
.page-support a {
  color: #FFD700;
  text-decoration: none;
}

.page-support a:hover {
  text-decoration: underline;
  color: #e0b800;
}

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

  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

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

  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

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

  .page-support__video-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__policies-section,
  .page-support__assurance-section,
  .page-support__final-cta-section {
    padding: 40px 0;
  }

  .page-support__video-wrapper {
    margin: 20px auto 0 auto;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

  .page-support__guide-card-image {
    height: 180px;
  }

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

  .page-support__contact-card-icon {
    width: 80px;
    height: 80px;
  }

  .page-support__contact-card-title {
    font-size: 1.3em;
  }

  .page-support__feature-icon {
    width: 100px;
    height: 100px;
  }

  /* Ensure all images inside page-support are responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important; /* Ensure images scale down */
    height: auto !important;
    display: block !important;
  }

  /* All containers with images should handle overflow */
  .page-support__container,
  .page-support__guides-grid,
  .page-support__contact-methods,
  .page-support__policies-grid,
  .page-support__assurance-features {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-support__guide-card,
  .page-support__contact-card,
  .page-support__policy-card,
  .page-support__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Specific adjustment for video section padding-top on mobile */
  .page-support__video-section {
    padding-top: 40px !important; /* Adjust if header offset is too large for mobile section */
  }
}