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

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

.page-news-industry-insights__section {
  padding: 60px 0;
  text-align: center;
}

.page-news-industry-insights__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-news-industry-insights__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-news-industry-insights__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-news-industry-insights__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

.page-news-industry-insights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E5A007; /* Highlight with accent color */
}

.page-news-industry-insights__hero-title a {
  color: #E5A007; /* Link color for H1 */
  text-decoration: none;
}

.page-news-industry-insights__hero-title a:hover {
  text-decoration: underline;
}

.page-news-industry-insights__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-insights__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section (dark or light bg) */
}

.page-news-industry-insights__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-news-industry-insights__image-full-width {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 40px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-insights__image-center {
  display: block;
  margin: 40px auto;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-insights__btn-primary {
  display: inline-block;
  background-color: #E5A007;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-news-industry-insights__btn-primary:hover {
  background-color: #ffb700;
  transform: translateY(-2px);
}

.page-news-industry-insights__link {
  color: #E5A007;
  text-decoration: none;
  font-weight: bold;
}

.page-news-industry-insights__link:hover {
  text-decoration: underline;
}

.page-news-industry-insights__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-news-industry-insights__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-news-industry-insights__video-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.page-news-industry-insights__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-news-industry-insights__video-wrapper:hover .page-news-industry-insights__video-overlay {
  opacity: 1;
}

.page-news-industry-insights__video-play-icon {
  font-size: 3em;
  margin-bottom: 10px;
}

.page-news-industry-insights__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-news-industry-insights__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-insights__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #0A2463;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news-industry-insights__faq-question:hover {
  background-color: #1a3c7a;
}

.page-news-industry-insights__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-news-industry-insights__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news-industry-insights__faq-item.active .page-news-industry-insights__faq-toggle {
  transform: rotate(45deg);
}

.page-news-industry-insights__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #f0f2f5;
  color: #333333;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-news-industry-insights__faq-item.active .page-news-industry-insights__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-news-industry-insights__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
  color: #333333;
}

.page-news-industry-insights__faq-answer p:last-child {
  padding-bottom: 0;
}

.page-news-industry-insights__final-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-news-industry-insights__hero-title {
    font-size: 2.5em;
  }

  .page-news-industry-insights__hero-description {
    font-size: 1.1em;
  }

  .page-news-industry-insights__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-insights__hero-section {
    min-height: 400px;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-news-industry-insights__hero-title {
    font-size: 2em;
  }

  .page-news-industry-insights__hero-description {
    font-size: 1em;
  }

  .page-news-industry-insights__section {
    padding: 40px 0;
  }

  .page-news-industry-insights__section-title {
    font-size: 1.8em;
  }

  .page-news-industry-insights__text-block {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-news-industry-insights__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }

  .page-news-industry-insights__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-insights__hero-section .page-news-industry-insights__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-insights img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry-insights__image-full-width,
  .page-news-industry-insights__image-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 20px auto;
  }

  .page-news-industry-insights video,
  .page-news-industry-insights__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-news-industry-insights__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-insights__faq-item {
    margin: 0 15px 15px;
  }

  .page-news-industry-insights__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-news-industry-insights__faq-answer {
    padding: 15px;
  }

  .page-news-industry-insights__final-cta {
    padding-left: 15px;
    padding-right: 15px;
  }
}