.page-news-industry-trends {
  color: #f8f9fa; /* Light text for dark body background */
  background-color: var(--dark-bg-1);
}

.page-news-industry-trends__hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 120px; /* Adjust for fixed header */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  overflow: hidden;
}

.page-news-industry-trends__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-news-industry-trends__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-news-industry-trends__hero-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-trends__hero-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-news-industry-trends__hero-cta {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__hero-cta:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-industry-trends__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-news-industry-trends__introduction-section,
.page-news-industry-trends__market-analysis-section,
.page-news-industry-trends__promotions-section,
.page-news-industry-trends__faq-section {
  padding: 60px 0;
  background-color: #f1f3f5; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-news-industry-trends__trends-section,
.page-news-industry-trends__opportunities-challenges,
.page-news-industry-trends__news-section {
  padding: 60px 0;
  background-color: var(--dark-bg-1); /* Dark background */
  color: #f8f9fa; /* Light text for dark background */
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: inherit; /* Inherit color from parent section */
}

.page-news-industry-trends__content-block {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-news-industry-trends__content-block p {
  margin-bottom: 20px;
  color: inherit;
}

.page-news-industry-trends__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-news-industry-trends__text-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.page-news-industry-trends__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-trends__image-half-width {
  width: 48%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-trends__image-align-left {
  float: left;
  margin-right: 2%;
}

.page-news-industry-trends__image-align-right {
  float: right;
  margin-left: 2%;
}

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

.page-news-industry-trends__trend-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

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

.page-news-industry-trends__card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
  border-radius: 8px;
}

.page-news-industry-trends__card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-news-industry-trends__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-news-industry-trends__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-news-industry-trends__primary-cta,
.page-news-industry-trends__secondary-cta {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__primary-cta {
  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}

.page-news-industry-trends__primary-cta:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__secondary-cta {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-news-industry-trends__secondary-cta:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-news-industry-trends__content-grid ul {
  list-style: none;
  padding: 0;
}

.page-news-industry-trends__content-grid li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555555;
}

.page-news-industry-trends__content-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

.page-news-industry-trends__promotion-card {
  background: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news-industry-trends__promotion-icon {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.page-news-industry-trends__promotion-card .page-news-industry-trends__card-title {
  color: #ffffff;
}

.page-news-industry-trends__promotion-card .page-news-industry-trends__card-description {
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-news-industry-trends__card-cta {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-news-industry-trends__card-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-news-industry-trends__news-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news-industry-trends__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news-industry-trends__news-content {
  padding: 25px;
  text-align: left;
}

.page-news-industry-trends__news-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news-industry-trends__news-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-news-industry-trends__news-title a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.page-news-industry-trends__news-excerpt {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-news-industry-trends__read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-right: 15px;
}

.page-news-industry-trends__read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.page-news-industry-trends__read-more:hover::after {
  right: -5px;
}

.page-news-industry-trends__faq-list {
  margin-top: 40px;
}

.page-news-industry-trends__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-news-industry-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news-industry-trends__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-news-industry-trends__faq-question:active {
  background: #eeeeee;
}

.page-news-industry-trends__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-news-industry-trends__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-toggle {
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1.1em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
  .page-news-industry-trends__content-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-trends__image-half-width {
    width: 100%;
    float: none;
    margin: 20px auto;
  }
  .page-news-industry-trends__image-align-left,
  .page-news-industry-trends__image-align-right {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-banner {
    padding-top: 140px !important; /* Mobile adjust for fixed header */
    padding-bottom: 40px;
  }
  .page-news-industry-trends__hero-content {
    margin-bottom: 20px;
  }
  .page-news-industry-trends__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-news-industry-trends__hero-cta {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-news-industry-trends__introduction-section,
  .page-news-industry-trends__trends-section,
  .page-news-industry-trends__market-analysis-section,
  .page-news-industry-trends__opportunities-challenges,
  .page-news-industry-trends__promotions-section,
  .page-news-industry-trends__news-section,
  .page-news-industry-trends__faq-section {
    padding: 30px 0;
  }
  .page-news-industry-trends__container {
    padding: 0 15px;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-industry-trends__content-block {
    font-size: 1em;
  }
  .page-news-industry-trends__content-block p {
    margin-bottom: 15px;
  }
  .page-news-industry-trends__grid-layout,
  .page-news-industry-trends__promotion-grid,
  .page-news-industry-trends__news-grid {
    gap: 20px;
  }
  .page-news-industry-trends__trend-card,
  .page-news-industry-trends__promotion-card,
  .page-news-industry-trends__news-card {
    padding: 20px;
  }
  .page-news-industry-trends__card-image {
    margin-bottom: 15px;
  }
  .page-news-industry-trends__card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .page-news-industry-trends__card-description {
    font-size: 0.9em;
  }
  .page-news-industry-trends__cta-wrapper {
    margin-top: 40px;
  }
  .page-news-industry-trends__primary-cta,
  .page-news-industry-trends__secondary-cta {
    padding: 10px 25px;
    font-size: 1em;
    width: 100%;
    display: block;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .page-news-industry-trends__secondary-cta {
    margin-left: 0;
  }
  .page-news-industry-trends__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-news-industry-trends__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-news-industry-trends__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-news-industry-trends__faq-answer {
    padding: 0 15px;
  }
  .page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
    padding: 15px !important;
  }

  /* Mobile Image Adaptations */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-news-industry-trends__hero-image-wrapper,
  .page-news-industry-trends__introduction-section .page-news-industry-trends__container,
  .page-news-industry-trends__trends-section .page-news-industry-trends__container,
  .page-news-industry-trends__market-analysis-section .page-news-industry-trends__container,
  .page-news-industry-trends__opportunities-challenges .page-news-industry-trends__container,
  .page-news-industry-trends__promotions-section .page-news-industry-trends__container,
  .page-news-industry-trends__news-section .page-news-industry-trends__container,
  .page-news-industry-trends__faq-section .page-news-industry-trends__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}