.page-news-industry-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-news-industry-trends__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

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

.page-news-industry-trends__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.page-news-industry-trends__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-news-industry-trends__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-news-industry-trends__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-news-industry-trends__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-industry-trends__intro-text {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-trends__cta-button:hover {
  background: #a30606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__cta-button--secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-news-industry-trends__cta-button--secondary:hover {
  background: #f0f0f0;
  border-color: #005f2e;
}

.page-news-industry-trends__section {
  padding: 60px 20px;
  text-align: center;
}

.page-news-industry-trends__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-news-industry-trends__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: inherit; /* Inherit from section background */
}

.page-news-industry-trends__subsection-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section background */
}

.page-news-industry-trends__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-news-industry-trends__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-news-industry-trends__image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-trends__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-news-industry-trends__list-item {
  font-size: 17px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: inherit;
}

.page-news-industry-trends__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #017439;
}

.page-news-industry-trends__cta-block {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
}

.page-news-industry-trends__cta-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-news-industry-trends {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }

  .page-news-industry-trends__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-news-industry-trends__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-news-industry-trends__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-news-industry-trends__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-news-industry-trends__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .page-news-industry-trends__subsection-title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-news-industry-trends__paragraph {
    font-size: 16px;
    text-align: left;
  }

  .page-news-industry-trends__image-wrapper {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-news-industry-trends__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
  }

  .page-news-industry-trends__list-item {
    font-size: 16px;
    padding-left: 20px;
  }

  .page-news-industry-trends__cta-block {
    padding: 30px 15px;
  }

  .page-news-industry-trends__cta-text {
    font-size: 20px;
    margin-bottom: 20px;
  }

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

/* Ensure all images adhere to min-size and no filter */
.page-news-industry-trends img {
  min-width: 200px;
  min-height: 200px;
  filter: none; /* Absolutely no filters */
}

/* Ensure content area images are not too small */
.page-news-industry-trends__section img,
.page-news-industry-trends__image-wrapper img {
  min-width: 200px;
  min-height: 200px;
}