.page-news-industry-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text on light body background */
  background-color: #FFFFFF;
}

.page-news-industry-trends__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-news-industry-trends__hero-container {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-news-industry-trends__hero-title {
  font-size: 3.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-news-industry-trends__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 30px;
}

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

.page-news-industry-trends__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.page-news-industry-trends__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

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

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

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

.page-news-industry-trends__paragraph a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

.page-news-industry-trends__highlight {
  font-weight: bold;
  color: #26A9E0;
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-industry-trends__cta-button:hover {
  background-color: #D46A00;
  transform: translateY(-3px);
}

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

.page-news-industry-trends__btn-primary:hover {
  background: #1e87b7;
}

.page-news-industry-trends__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news-industry-trends__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  color: #333333;
}

.page-news-industry-trends__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-news-industry-trends__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-news-industry-trends__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-trends__card-text {
  font-size: 1em;
  color: #555555;
}

.page-news-industry-trends__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-news-industry-trends__list-item {
  background-color: #F9F9F9;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: #333333;
}

.page-news-industry-trends__list-item-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-trends__content-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  min-width: 200px;
  min-height: 200px;
}

.page-news-industry-trends__text-block {
  margin-bottom: 40px;
}

.page-news-industry-trends__adaptive-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news-industry-trends__feature-item {
  background-color: #E6F7FF; /* Light blue background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  color: #333333;
}

.page-news-industry-trends__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-trends__video-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background-color: #26A9E0; /* Brand color as dark background */
  text-align: center;
  color: #FFFFFF;
}

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

.page-news-industry-trends__video-wrapper video,
.page-news-industry-trends__video-wrapper .page-news-industry-trends__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.page-news-industry-trends__video-link {
  cursor: pointer;
  display: block;
}

.page-news-industry-trends__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-news-industry-trends__faq-section {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

.page-news-industry-trends__faq-container {
  max-width: 900px;
  margin: 40px auto;
}

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

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  transition: background-color 0.3s ease;
}

.page-news-industry-trends__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #26A9E0;
}

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

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

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-title {
    font-size: 3em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1.2em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
  .page-news-industry-trends__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry-trends__hero-title {
    font-size: 2.5em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1em;
  }
  .page-news-industry-trends__content-area {
    padding: 40px 15px;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-trends__grid,
  .page-news-industry-trends__adaptive-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-industry-trends__card,
  .page-news-industry-trends__feature-item {
    padding: 20px;
  }
  .page-news-industry-trends__card-image,
  .page-news-industry-trends__content-image {
    min-width: 200px !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
  }
  .page-news-industry-trends__video-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry-trends__video-wrapper {
    padding-bottom: 56.25%;
  }
  .page-news-industry-trends__video,
  .page-news-industry-trends__video-link {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-trends__video-wrapper,
  .page-news-industry-trends__faq-container,
  .page-news-industry-trends__hero-container,
  .page-news-industry-trends__content-area,
  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .page-news-industry-trends__cta-button,
  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary,
  .page-news-industry-trends a[class*="button"],
  .page-news-industry-trends a[class*="btn"] {
    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__cta-button,
  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary,
  .page-news-industry-trends a[class*="button"],
  .page-news-industry-trends a[class*="btn"] {
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-trends__faq-section {
    padding: 40px 15px;
  }
  .page-news-industry-trends__faq-question {
    padding: 15px;
  }
  .page-news-industry-trends__faq-question h3 {
    font-size: 1.1em;
  }
  .page-news-industry-trends__faq-answer {
    padding: 0 15px;
  }
  .page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
}