.page-faqs {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color on dark body background */
  background-color: transparent; /* Inherit from body or be transparent over body background */
}

.page-faqs__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 40px;
  text-align: center;
  background-color: var(--black-color, #1a1a1a); /* Ensure a dark background for hero */
}

.page-faqs__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-faqs__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-faqs__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-faqs__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-faqs__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-faqs__btn-primary,
.page-faqs__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px 10px 0;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-faqs__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-faqs__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-faqs__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-faqs__btn-secondary:hover {
  background-color: #e0e0e0;
}

.page-faqs__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--black-color, #1a1a1a);
}

.page-faqs__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
}

.page-faqs__video-container {
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-faqs__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Ensure width 100% for desktop */
  max-width: 100%;
  border-radius: 8px;
}

.page-faqs__video-wrapper .page-faqs__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-faqs__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-faqs__video-caption {
  color: #f0f0f0;
  text-align: center;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-faqs__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--black-color, #1a1a1a);
}

.page-faqs__content-heading {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: center;
}

.page-faqs__faq-list {
  margin-top: 30px;
}

.page-faqs__faq-item {
  background-color: #ffffff; /* White background for FAQ items */
  color: #333333; /* Dark text for readability */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.page-faqs__faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-faqs__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0; /* Brand color for questions */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-faqs__faq-question:hover {
  background-color: #f5f5f5;
}

.page-faqs__faq-qtext {
  flex-grow: 1;
}

.page-faqs__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-faqs__faq-answer {
  padding: 10px 25px 25px;
  font-size: 1em;
  color: #333333; /* Dark text for answers */
  border-top: 1px solid #eee;
}

.page-faqs__faq-answer p {
  margin-bottom: 15px;
}

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

.page-faqs__faq-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-faqs__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-faqs__faq-answer a:hover {
  color: #1e87b8;
}

.page-faqs__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #26A9E0; /* Brand color background for CTA */
  color: #FFFFFF;
  border-radius: 8px;
  margin-top: 40px;
}

.page-faqs__cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  font-weight: bold;
}

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

  .page-faqs__hero-section,
  .page-faqs__video-section,
  .page-faqs__content-area {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .page-faqs__hero-section {
    padding-top: 40px;
  }

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

  .page-faqs__description {
    font-size: 1em;
  }

  .page-faqs__btn-primary,
  .page-faqs__btn-secondary,
  .page-faqs a[class*="button"],
  .page-faqs a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 0 15px 0 !important; /* Stack buttons */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-faqs__hero-content .page-faqs__btn-primary,
  .page-faqs__cta-section .page-faqs__btn-secondary,
  .page-faqs__cta-section .page-faqs__btn-primary {
    display: block;
  }

  .page-faqs__video-section {
    padding-top: 10px !important;
  }

  .page-faqs__video-container,
  .page-faqs__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-faqs video,
  .page-faqs__video,
  .page-faqs img,
  .page-faqs__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

  .page-faqs__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-faqs__main-title {
    font-size: 1.8em;
  }

  .page-faqs__section-title,
  .page-faqs__content-heading {
    font-size: 1.6em;
  }
}