.page-news-industry-trends {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--background, #08160F); /* Overall dark background */
}

.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for aesthetic */
}

.page-news-industry-trends__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for visual flow */
  background: var(--card-bg, #11271B);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border, #2E7A4E);
}

.page-news-industry-trends__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page-news-industry-trends__description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-news-industry-trends__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news-industry-trends__section {
  padding: 60px 20px;
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

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

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--gold, #F2C14E);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold, #F2C14E);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news-industry-trends__introduction p, 
.page-news-industry-trends__market-segments p, 
.page-news-industry-trends__user-experience p, 
.page-news-industry-trends__challenges-opportunities p, 
.page-news-industry-trends__conclusion p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main, #F2FFF6);
}

.page-news-industry-trends__introduction strong, 
.page-news-industry-trends__market-segments strong, 
.page-news-industry-trends__user-experience strong, 
.page-news-industry-trends__challenges-opportunities strong, 
.page-news-industry-trends__conclusion strong {
  color: var(--glow, #57E38D);
}

.page-news-industry-trends__technology-trends .page-news-industry-trends__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-news-industry-trends__card {
  background: var(--card-bg, #11271B);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-news-industry-trends__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
}

.page-news-industry-trends__card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-news-industry-trends__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6);
}

.page-news-industry-trends__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

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

.page-news-industry-trends__feature-item {
  background: var(--card-bg, #11271B);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border, #2E7A4E);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__feature-icon {
  width: 100%;
  height: 150px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
  display: block;
}

.page-news-industry-trends__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--gold, #F2C14E);
  margin-bottom: 10px;
}

.page-news-industry-trends__feature-item p {
  font-size: 0.9em;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8);
}

.page-news-industry-trends__content-block h3 {
  font-size: 1.8em;
  color: var(--gold, #F2C14E);
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.page-news-industry-trends__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-news-industry-trends__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--glow, #57E38D);
  color: var(--glow, #57E38D);
}

.page-news-industry-trends__cta-button--secondary:hover {
  background: var(--glow, #57E38D);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding-bottom: 20px;
  }

  .page-news-industry-trends__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

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

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

  .page-news-industry-trends__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  
  .page-news-industry-trends__cta-group {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-news-industry-trends__card {
    padding: 20px;
  }

  .page-news-industry-trends__card-image {
    height: 180px;
  }

  .page-news-industry-trends__feature-icon {
    height: 120px;
  }

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

  /* Force responsive for all images */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure containers wrap images correctly */
  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .page-news-industry-trends__hero-section,
  .page-news-industry-trends__hero-content,
  .page-news-industry-trends__grid-layout,
  .page-news-industry-trends__feature-grid,
  .page-news-industry-trends__feature-item,
  .page-news-industry-trends__content-block,
  .page-news-industry-trends__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  .page-news-industry-trends__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }
}

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

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

  .page-news-industry-trends__hero-content {
    margin-top: -60px;
  }
}