.page-industry-news-latest-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text on dark background for readability */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-industry-news-latest-trends__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-industry-news-latest-trends__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(10,35,66,0) 70%);
  opacity: 0.3;
  animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-industry-news-latest-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-industry-news-latest-trends__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-industry-news-latest-trends__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

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

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

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

.page-industry-news-latest-trends__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-align: center;
}

.page-industry-news-latest-trends__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

.page-industry-news-latest-trends__article ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-industry-news-latest-trends__article li {
  margin-bottom: 8px;
}

.page-industry-news-latest-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-trends__cta-button--inline {
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-latest-trends__final-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A2342;
  border-radius: 10px;
  border: 1px solid #FFD700;
}

.page-industry-news-latest-trends__final-cta p {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-industry-news-latest-trends__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

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

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

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

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

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

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

  .page-industry-news-latest-trends__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

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

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

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

  .page-industry-news-latest-trends__final-cta p {
    font-size: 1.2em;
  }

  .page-industry-news-latest-trends__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}