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

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

.page-faqs__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

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

.page-faqs__hero-cta {
  margin-top: 30px;
}

.page-faqs__btn-primary,
.page-faqs__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-faqs__btn-primary {
  background-color: #FF4500;
  color: #ffffff;
  border: 2px solid #FF4500;
}

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

.page-faqs__btn-secondary {
  background-color: transparent;
  color: #1E90FF;
  border: 2px solid #1E90FF;
  margin-left: 20px;
}

.page-faqs__btn-secondary:hover {
  background-color: #1E90FF;
  color: #ffffff;
}

.page-faqs__video-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  text-align: center;
  color: #ffffff;
}

.page-faqs__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 30px auto;
  max-width: 900px;
  background-color: #000;
  border-radius: 10px;
}

.page-faqs__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.page-faqs__video-cta {
  margin-top: 30px;
}

.page-faqs__section-title {
  font-size: 2.5em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}