.page-news-center-industry-trends-analysis {
  --primary-color: #CC0000;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --background-light: #F8F8F8;
  --background-dark: #1A1A1A;
  --accent-color: #0028ff; /* Derived from secondary for contrast */
}

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

.page-news-center-industry-trends-analysis__hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-center-industry-trends-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light); /* Ensure high contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-center-industry-trends-analysis__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light); /* Ensure high contrast */
}

.page-news-center-industry-trends-analysis__content-section {
  background-color: var(--background-light);
  padding: 60px 0;
  color: var(--text-color-dark);
}

.page-news-center-industry-trends-analysis__article {
  line-height: 1.8;
  font-size: 1.1em;
}

.page-news-center-industry-trends-analysis__heading {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-news-center-industry-trends-analysis__sub-heading {
  font-size: 1.8em;
  color: var(--text-color-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(204, 0, 0, 0.2);
  padding-bottom: 5px;
}

.page-news-center-industry-trends-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-center-industry-industry-trends-analysis__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-news-center-industry-trends-analysis__list-item-title {
  color: var(--primary-color);
}

.page-news-center-industry-trends-analysis__cta-section {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 60px 40px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-news-center-industry-trends-analysis__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-color-light); /* Ensure high contrast */
}

.page-news-center-industry-trends-analysis__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--text-color-light); /* Ensure high contrast */
}

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

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

.page-news-center-industry-trends-analysis__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-news-center-industry-trends-analysis__btn--primary:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
}

.page-news-center-industry-trends-analysis__btn--secondary {
  background-color: var(--text-color-light);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-news-center-industry-trends-analysis__btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border-color: var(--text-color-light);
  transform: translateY(-3px);
}

.page-news-center-industry-trends-analysis__btn--tertiary {
  background-color: transparent;
  color: var(--text-color-light);
  border: 2px solid var(--text-color-light);
}

.page-news-center-industry-trends-analysis__btn--tertiary:hover {
  background-color: var(--text-color-light);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.page-news-center-industry-trends-analysis__article a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-news-center-industry-trends-analysis__article a:hover {
  text-decoration: underline;
}

.page-news-center-industry-trends-analysis .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-news-center-industry-trends-analysis__scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.page-news-center-industry-trends-analysis__scroll-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.page-news-center-industry-trends-analysis__scroll-to-top svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-news-center-industry-trends-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-news-center-industry-trends-analysis__hero-subtitle {
    font-size: 1.2em;
  }

  .page-news-center-industry-trends-analysis__heading {
    font-size: 2em;
  }

  .page-news-center-industry-trends-analysis__sub-heading {
    font-size: 1.5em;
  }

  .page-news-center-industry-trends-analysis__cta-title {
    font-size: 2.2em;
  }

  .page-news-center-industry-trends-analysis__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-news-center-industry-trends-analysis__hero-section {
    padding: 80px 0;
  }

  .page-news-center-industry-trends-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-news-center-industry-trends-analysis__hero-subtitle {
    font-size: 1em;
  }

  .page-news-center-industry-trends-analysis__content-section {
    padding: 40px 0;
  }

  .page-news-center-industry-trends-analysis__heading {
    font-size: 1.8em;
  }

  .page-news-center-industry-trends-analysis__sub-heading {
    font-size: 1.3em;
  }

  .page-news-center-industry-trends-analysis__article {
    font-size: 1em;
  }

  .page-news-center-industry-trends-analysis__cta-section {
    padding: 40px 20px;
  }

  .page-news-center-industry-trends-analysis__cta-title {
    font-size: 1.8em;
  }

  .page-news-center-industry-trends-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-center-industry-trends-analysis__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-news-center-industry-trends-analysis__scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .page-news-center-industry-trends-analysis__scroll-to-top svg {
    width: 24px;
    height: 24px;
  }
}

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

  .page-news-center-industry-trends-analysis__hero-subtitle {
    font-size: 0.9em;
  }

  .page-news-center-industry-trends-analysis__heading {
    font-size: 1.5em;
  }
}