.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark backgrounds */
  background-color: #0A2463; /* Main dark background */
}

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

.page-industry-news__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2463 0%, #1A3C7E 100%); /* Dark blue gradient */
  position: relative;
  overflow: hidden;
  color: #F8F8F8;
}

.page-industry-news__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary gold for highlight */
  line-height: 1.2;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-industry-news__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary gold for button */
  color: #0A2463; /* Dark 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.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news__hero-btn:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-industry-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-industry-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

.page-industry-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-industry-news__latest-news {
  background-color: #1A3C7E; /* Slightly lighter blue for news section */
  padding: 60px 0;
}

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

.page-industry-news__news-card {
  background-color: #0A2463; /* Main dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F8F8F8;
}

.page-industry-news__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-news__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-industry-news__news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-industry-news__news-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for news titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-industry-news__news-excerpt {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #E0E0E0;
  flex-grow: 1;
}

.page-industry-news__read-more {
  display: inline-block;
  color: #FFD700; /* Gold for read more links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-industry-news__read-more:hover {
  color: #F8F8F8;
}

.page-industry-news__cta-bottom {
  text-align: center;
  margin-top: 80px;
  padding: 40px;
  background-color: #0A2463;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__cta-text {
  font-size: 1.5em;
  color: #F8F8F8;
  margin-bottom: 25px;
  line-height: 1.5;
}

.page-industry-news__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news__cta-btn:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-industry-news__analysis {
  background-color: #0A2463;
  padding: 60px 0 80px 0;
}

.page-industry-news__analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-industry-news__analysis-item {
  background-color: #1A3C7E; /* Lighter blue for analysis cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F8F8F8;
  padding-bottom: 25px;
}

.page-industry-news__analysis-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
  margin-bottom: 20px;
}

.page-industry-news__analysis-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 0 25px;
  margin-bottom: 15px;
}

.page-industry-news__analysis-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  padding: 0 25px;
}

.page-industry-news__contact-cta {
  background-color: #FFD700; /* Auxiliary gold for contact CTA */
  color: #0A2463; /* Dark text on gold background */
  padding: 80px 20px;
  text-align: center;
}

.page-industry-news__contact-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-industry-news__contact-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-industry-news__contact-btn {
  display: inline-block;
  background-color: #0A2463;
  color: #FFD700;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news__contact-btn:hover {
  background-color: #1A3C7E; /* Slightly lighter blue on hover */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news__hero-subtitle,
  .page-industry-news__cta-text,
  .page-industry-news__contact-description {
    font-size: 1.2em;
  }
  .page-industry-news__section-title {
    font-size: 2.2em;
  }
  .page-industry-news__news-title {
    font-size: 1.4em;
  }
  .page-industry-news__analysis-title {
    font-size: 1.6em;
  }
  .page-industry-news__contact-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 60px 15px;
  }
  .page-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-industry-news__news-grid,
  .page-industry-news__analysis-grid {
    grid-template-columns: 1fr;
  }
  .page-industry-news__news-card,
  .page-industry-news__analysis-item {
    margin: 0 auto;
    max-width: 450px;
  }
  .page-industry-news__cta-bottom {
    margin-top: 60px;
    padding: 30px 20px;
  }
  .page-industry-news__cta-text {
    font-size: 1.3em;
  }
  .page-industry-news__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-industry-news__contact-title {
    font-size: 2em;
  }
  .page-industry-news__contact-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-industry-news__section-title {
    font-size: 1.8em;
  }
  .page-industry-news__news-title {
    font-size: 1.2em;
  }
  .page-industry-news__analysis-title {
    font-size: 1.4em;
  }
  .page-industry-news__contact-title {
    font-size: 1.8em;
  }
  .page-industry-news__contact-description {
    font-size: 1em;
  }
  .page-industry-news__cta-btn,
  .page-industry-news__contact-btn {
    width: 100%;
    max-width: 280px;
    font-size: 1em;
  }
}