.page-news-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body via shared.css */
}

.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: 2.5em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-trends__section-description,
.page-news-industry-trends__paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-news-industry-trends__paragraph {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-news-industry-trends__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(1, 116, 57, 0.7)); /* Darker overlay with brand color */
  z-index: 2;
}

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

.page-news-industry-trends__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFF00; /* Register/Login font color for highlight */
}

.page-news-industry-trends__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.page-news-industry-trends__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

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

.page-news-industry-trends__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

.page-news-industry-trends__video-section {
  background-color: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-news-industry-trends__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.page-news-industry-trends__content-section {
  padding: 80px 0;
}

.page-news-industry-trends__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-news-industry-trends__light-bg .page-news-industry-trends__paragraph,
.page-news-industry-trends__light-bg .page-news-industry-trends__section-description,
.page-news-industry-trends__light-bg .page-news-industry-trends__feature-description,
.page-news-industry-trends__light-bg .page-news-industry-trends__analysis-description,
.page-news-industry-trends__light-bg .page-news-industry-trends__guide-description,
.page-news-industry-trends__light-bg .page-news-industry-trends__faq-answer p {
  color: #333333;
}

.page-news-industry-trends__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff; /* Light text for dark background */
}

.page-news-industry-trends__feature-grid,
.page-news-industry-trends__market-analysis-grid,
.page-news-industry-trends__guide-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-trends__feature-item,
.page-news-industry-trends__analysis-item,
.page-news-industry-trends__guide-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark sections */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-news-industry-trends__light-bg .page-news-industry-trends__feature-item,
.page-news-industry-trends__light-bg .page-news-industry-trends__analysis-item,
.page-news-industry-trends__light-bg .page-news-industry-trends__guide-item {
  background-color: #f8f8f8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-trends__feature-item:hover,
.page-news-industry-trends__analysis-item:hover,
.page-news-industry-trends__guide-item:hover {
  transform: translateY(-5px);
}

.page-news-industry-trends__feature-image,
.page-news-industry-trends__analysis-image,
.page-news-industry-trends__guide-image,
.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__feature-title,
.page-news-industry-trends__analysis-title,
.page-news-industry-trends__guide-title,
.page-news-industry-trends__card-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-industry-trends__feature-description,
.page-news-industry-trends__analysis-description,
.page-news-industry-trends__guide-description {
  font-size: 1em;
  text-align: left;
  line-height: 1.7;
}

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

.page-news-industry-trends__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark sections */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-news-industry-trends__light-bg .page-news-industry-trends__card {
  background-color: #f8f8f8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-news-industry-trends__card:hover {
  transform: translateY(-5px);
}

.page-news-industry-trends__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-industry-trends__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.page-news-industry-trends__card-link {
  display: inline-block;
  color: #017439;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
  align-self: flex-start;
}

.page-news-industry-trends__card-link:hover {
  text-decoration: underline;
}

.page-news-industry-trends__faq-section {
  padding: 80px 0;
}

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

.page-news-industry-trends__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Transparent white for dark section */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}