.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); /* Inherit 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: 80px 0;
}

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

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

.page-news-industry-insights__hero-section {
  position: relative;
  text-align: center;
  padding: 120px 0 80px; /* Adjust padding-top for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.page-news-industry-insights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-news-industry-insights__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #f0f0f0;
}

.page-news-industry-insights__btn-primary {
  display: inline-block;
  background-color: #E0B400;
  color: #0A2342;
  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;
}

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

.page-news-industry-insights__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
}

.page-news-industry-insights__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-news-industry-insights__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

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

.page-news-industry-insights__video-section {
  text-align: center;
}

.page-news-industry-insights__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-insights__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-news-industry-insights__video-cta a {
  color: #E0B400;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-industry-insights__video-cta a:hover {
  color: #ffc107;
}

.page-news-industry-insights__faq-list {
  margin-top: 40px;
}

.page-news-industry-insights__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-news-industry-insights__faq-item.active {
  background-color: #f0f0f0;
}

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

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

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

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

.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;
  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; /* Sufficient height for content */
  padding: 15px 20px;
}

.page-news-industry-insights__faq-answer p {
  margin: 0;
  color: #555555;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-industry-insights__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-insights__section-title {
    font-size: 2em;
  }
  .page-news-industry-insights__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-insights__hero-section {
    padding: var(--header-offset, 120px) 0 60px; /* Mobile padding-top for fixed header */
  }
  .page-news-industry-insights__hero-title {
    font-size: 2.2em;
  }
  .page-news-industry-insights__hero-description {
    font-size: 1em;
  }
  .page-news-industry-insights__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-news-industry-insights__section {
    padding: 60px 0;
  }
  .page-news-industry-insights__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-insights__sub-title {
    font-size: 1.3em;
  }
  .page-news-industry-insights__text-block, .page-news-industry-insights__faq-answer p {
    font-size: 0.95em;
  }
  .page-news-industry-insights__container {
    padding: 0 15px;
  }

  /* Mobile image responsiveness */
  .page-news-industry-insights img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-insights__image-content {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Mobile video responsiveness */
  .page-news-industry-insights__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important; /* Remove container padding if any */
    padding-right: 0 !important;
  }
  .page-news-industry-insights__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile button responsiveness */
  .page-news-industry-insights__btn-primary,
  .page-news-industry-insights a[class*="button"],
  .page-news-industry-insights a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }
  .page-news-industry-insights__hero-section .page-news-industry-insights__container {
    padding: 0 15px;
  }
  .page-news-industry-insights__faq-question {
    padding: 12px 15px;
  }
  .page-news-industry-insights__faq-answer {
    padding: 0 15px;
  }
  .page-news-industry-insights__faq-item.active .page-news-industry-insights__faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-news-industry-insights__hero-title {
    font-size: 1.8em;
  }
  .page-news-industry-insights__section-title {
    font-size: 1.5em;
  }
  .page-news-industry-insights__sub-title {
    font-size: 1.2em;
  }
  .page-news-industry-insights__faq-question {
    font-size: 1em;
  }
}