.page-latest-news-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Primary dark background */
}

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

.page-latest-news-industry-trends__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2a3a4f 100%); /* Dark gradient */
  padding: 100px 0 60px;
  text-align: center;
  color: #FFFFFF; /* White text for hero section */
}

.page-latest-news-industry-trends__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Secondary color for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-latest-news-industry-trends__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

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

.page-latest-news-industry-trends__article {
  background-color: #1A2A40; /* Slightly lighter dark background for article */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-latest-news-industry-trends__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Secondary color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-latest-news-industry-trends__sub-section-title {
  font-size: 1.8em;
  color: #FFFFFF; /* White for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-latest-news-industry-trends__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-latest-news-industry-trends__article ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-latest-news-industry-trends__article li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

.page-latest-news-industry-trends__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-latest-news-industry-trends__btn--primary {
  background-color: #FFD700; /* Secondary color for primary button */
  color: #0A192F; /* Primary color for text on primary button */
}

.page-latest-news-industry-trends__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-latest-news-industry-trends__btn--secondary {
  background-color: #0A192F; /* Primary color for secondary button */
  color: #FFD700; /* Secondary color for text on secondary button */
  border: 2px solid #FFD700;
}

.page-latest-news-industry-trends__btn--secondary:hover {
  background-color: #1A2A40; /* Slightly lighter dark on hover */
  transform: translateY(-2px);
}

.page-latest-news-industry-trends__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-latest-news-industry-trends__article .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-latest-news-industry-trends__hero-title {
    font-size: 2.5em;
  }

  .page-latest-news-industry-trends__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-latest-news-industry-trends__sub-section-title {
    font-size: 1.5em;
  }

  .page-latest-news-industry-trends__article {
    padding: 25px;
  }

  .page-latest-news-industry-trends__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-latest-news-industry-trends__hero-subtitle {
    font-size: 1em;
  }

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

  .page-latest-news-industry-trends__sub-section-title {
    font-size: 1.3em;
  }

  .page-latest-news-industry-trends__article {
    padding: 15px;
  }

  .page-latest-news-industry-trends__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}