.page-industry-news {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-industry-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #1A202C, #3A404C); /* Darker gradient */
  color: #FFFFFF;
  text-align: center;
  gap: 40px;
}

.page-industry-news__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-industry-news__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);
}

.page-industry-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #B0B0B0;
}

.page-industry-news__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #1A202C;
  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;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news__hero-cta:hover {
  background-color: #E0C000; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-industry-news__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-industry-news__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news__intro-section, .page-industry-news__main-content, .page-industry-news__related-news-section, .page-industry-news__cta-section {
  padding: 60px 0;
}

.page-industry-news__intro-section {
  background-color: #2A303C;
  text-align: center;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #C0C0C0;
  text-align: justify;
}

.page-industry-news__content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__main-content {
  background-color: #1A202C;
}

.page-industry-news__article {
  background-color: #2A303C;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news__article-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-industry-news__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-industry-news__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-industry-news__related-news-section {
  background-color: #2A303C;
}

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

.page-industry-news__news-item {
  background-color: #1A202C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-industry-news__news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-industry-news__news-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
  flex-grow: 1;
}

.page-industry-news__news-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__news-item h3 a:hover {
  color: #E0C000;
}

.page-industry-news__news-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 15px;
}

.page-industry-news__news-cta {
  display: inline-block;
  background-color: #4CAF50; /* Green accent for 'View Details' */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-industry-news__news-cta:hover {
  background-color: #43A047;
}

.page-industry-news__cta-section {
  background-color: #1A202C;
  text-align: center;
  padding: 80px 0;
}

.page-industry-news__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-industry-news__cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-industry-news__cta-button:hover {
  background-color: #E0C000;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }

  .page-industry-news__hero-title {
    font-size: 2.8em;
  }

  .page-industry-news__hero-description {
    font-size: 1.1em;
  }

  .page-industry-news__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-industry-news__section-title {
    font-size: 2em;
  }

  .page-industry-news__article {
    padding: 30px;
  }

  .page-industry-news__article-title {
    font-size: 1.8em;
  }

  .page-industry-news__cta-title {
    font-size: 2.2em;
  }

  .page-industry-news__cta-description {
    font-size: 1.1em;
  }

  .page-industry-news__cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news__hero-description {
    font-size: 1em;
  }

  .page-industry-news__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news__intro-section, .page-industry-news__main-content, .page-industry-news__related-news-section, .page-industry-news__cta-section {
    padding: 40px 0;
  }

  .page-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-industry-news__article {
    padding: 25px;
  }

  .page-industry-news__article-title {
    font-size: 1.5em;
  }

  .page-industry-news__paragraph, .page-industry-news__list li {
    font-size: 1em;
  }

  .page-industry-news__news-grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news__news-item h3 {
    font-size: 1.2em;
  }

  .page-industry-news__news-description {
    font-size: 0.9em;
  }

  .page-industry-news__news-cta {
    padding: 8px 15px;
    font-size: 0.85em;
  }

  .page-industry-news__cta-title {
    font-size: 1.8em;
  }

  .page-industry-news__cta-description {
    font-size: 1em;
  }

  .page-industry-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}