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

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

.page-news-industry-trends__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
}

.page-news-industry-trends__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

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

.page-news-industry-trends__hero-section .page-news-industry-trends__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-news-industry-trends__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news-industry-trends__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

.page-news-industry-trends__btn-primary,
.page-news-industry-trends__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
}

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

.page-news-industry-trends__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-news-industry-trends__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-news-industry-trends__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-news-industry-trends__content-section {
  padding: 80px 0;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-trends__section-title--white {
  color: #FFFFFF;
}

.page-news-industry-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

.page-news-industry-trends__sub-title {
  font-size: 1.8em;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.page-news-industry-trends__paragraph {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-news-industry-trends__paragraph--white {
  color: #E0E0E0;
}

.page-news-industry-trends strong {
  color: #26A9E0;
}

.page-news-industry-trends__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-news-industry-trends__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-news-industry-trends__cta-buttons--bottom {
  margin-top: 60px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-news-industry-trends__faq-list {
  margin-top: 40px;
}

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

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

.page-news-industry-trends__faq-question:hover {
  background-color: #e5e5e5;
}

.page-news-industry-trends__faq-title {
  margin: 0;
  color: #333333;
  font-size: 1.2em;
}

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

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

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

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

/* Video Section */
.page-news-industry-trends__video-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #FFFFFF;
}

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

.page-news-industry-trends__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  cursor: pointer;
}

.page-news-industry-trends__video-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: block; /* Make the entire video clickable */
}

/* Color Contrast Classes */
.page-news-industry-trends__dark-bg {
  background-color: var(--black-color);
  color: #ffffff;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.8em;
  }

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

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 450px;
  }

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

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

  .page-news-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-trends__content-section,
  .page-news-industry-trends__video-section {
    padding: 40px 0;
  }

  .page-news-industry-trends__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news-industry-trends__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

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

  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-news-industry-trends__image-wrapper,
  .page-news-industry-trends__video-wrapper,
  .page-news-industry-trends__cta-buttons,
  .page-news-industry-trends__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-news-industry-trends__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-news-industry-trends__faq-title {
    font-size: 1em;
  }

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

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

  .page-news-industry-trends__section-title {
    font-size: 1.5em;
  }

  .page-news-industry-trends__sub-title {
    font-size: 1.3em;
  }
}