.page-news-industry-trends {
  color: #ffffff; /* Body background is dark #121212, so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-news-industry-trends__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background for hero section */
}

.page-news-industry-trends__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news-industry-trends__hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-news-industry-trends__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-industry-trends__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #f0f0f0;
  margin-bottom: 30px;
}

.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: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-news-industry-trends__btn-secondary {
  background: #EA7C07; /* Login color for secondary button */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-news-industry-trends__btn-secondary:hover {
  background: #c26706;
  border-color: #c26706;
}

.page-news-industry-trends__section {
  padding: 60px 0;
  background-color: #121212; /* Ensure consistent dark background */
}

.page-news-industry-trends__section:nth-of-type(even) {
  background-color: #1a1a1a;
}

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

.page-news-industry-trends__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.3;
}

.page-news-industry-trends__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-news-industry-trends__text-block {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 20px;
}

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

.page-news-industry-trends__image-content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-news-industry-trends__image-content-block--reverse {
  flex-direction: row-reverse;
}

.page-news-industry-trends__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__text-content {
  flex: 1;
  max-width: 50%;
}

.page-news-industry-trends__cta-buttons--inline {
  justify-content: flex-start;
  margin-top: 30px;
}

.page-news-industry-trends__text-link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-news-industry-trends__text-link:hover {
  color: #EA7C07;
}

/* FAQ Section */
.page-news-industry-trends__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.page-news-industry-trends__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-news-industry-trends__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: #26A9E0; /* Brand color for summary */
  border-bottom: 1px solid transparent; /* default */
}

.page-news-industry-trends__faq-item[open] summary {
  border-bottom-color: #333333;
}

.page-news-industry-trends__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-news-industry-trends__faq-qtext {
  flex-grow: 1;
}

.page-news-industry-trends__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-news-industry-trends__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #f0f0f0;
  background-color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-trends__image-content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-news-industry-trends__image-content-block--reverse {
    flex-direction: column;
  }

  .page-news-industry-trends__content-image,
  .page-news-industry-trends__text-content {
    max-width: 100%;
    flex: none;
  }

  .page-news-industry-trends__cta-buttons--inline {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-news-industry-trends__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

  .page-news-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 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: 0.95rem;
  }

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

  .page-news-industry-trends__container {
    padding: 0 15px;
  }

  .page-news-industry-trends__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-news-industry-trends__sub-title {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .page-news-industry-trends__text-block {
    font-size: 0.95rem;
  }

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

  .page-news-industry-trends__image-content-block {
    gap: 20px;
  }

  /* Containers with images/videos/buttons must have these */
  .page-news-industry-trends__section,
  .page-news-industry-trends__container,
  .page-news-industry-trends__hero-section,
  .page-news-industry-trends__hero-image-wrapper,
  .page-news-industry-trends__hero-content,
  .page-news-industry-trends__image-content-block,
  .page-news-industry-trends__text-content,
  .page-news-industry-trends__faq-list,
  .page-news-industry-trends__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  /* Reset padding for sections that already handle it via container */
  .page-news-industry-trends__section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-news-industry-trends__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-news-industry-trends__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

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

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

/* Ensure images in content area don't go below 200px */
.page-news-industry-trends__content-image {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast fixes if needed */
.page-news-industry-trends__dark-bg {
  color: #ffffff; /* Deep dark background, so use light text */
  background: #26A9E0; /* Example: brand color as background */
}

.page-news-industry-trends__light-bg {
  color: #333333; /* Light background, use dark text */
  background: #ffffff;
}