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

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

.page-industry-news__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A54 100%); /* Slightly lighter gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter text for subtitle */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-industry-news__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
  background-color: #e6c200;
  color: #000;
}

.page-industry-news__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-industry-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-industry-news__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-industry-news__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-industry-news__section:last-of-type {
    border-bottom: none;
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  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__about p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-industry-news__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-industry-news__article {
  background-color: #1A3A54; /* Darker blue for article cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #E0E0E0;
}

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

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

.page-industry-news__article-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-industry-news__article-content p {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  text-align: justify;
}

.page-industry-news__article-content .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-industry-news__cta {
  text-align: center;
  background-color: #0A2239; /* Ensure CTA background contrasts */
  padding: 80px 0;
}

.page-industry-news__cta-content {
  background-color: #1A3A54;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news__cta .page-industry-news__section-title {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-industry-news__cta .page-industry-news__section-title::after {
    background-color: #FFD700;
}

.page-industry-news__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #C0C0C0;
}

.page-industry-news__cta-buttons .page-industry-news__btn {
  margin: 0 10px;
}

.page-industry-news__detail-pages {
  padding-bottom: 80px;
}

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

.page-industry-news__article-item {
  background-color: #1A3A54;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-industry-news__article-item-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-industry-news__article-item-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-industry-news__article-item-title a:hover {
  text-decoration: underline;
}

.page-industry-news__article-item-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Floating CTA Button */
.page-industry-news__floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FFD700;
  color: #0A2239;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-industry-news__floating-cta:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-industry-news__floating-cta-icon {
  margin-left: 10px;
  font-size: 1.3em;
}

/* Highlight text for keywords */
.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news__section-title {
    font-size: 2em;
  }
  .page-industry-news__article {
    flex-direction: column;
  }
  .page-industry-news__article-image {
    height: 200px;
  }
  .page-industry-news__article-title {
    font-size: 1.5em;
  }
  .page-industry-news__cta-buttons .page-industry-news__btn {
    margin: 10px 0;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-industry-news__hero {
    padding: 80px 0;
  }
  .page-industry-news__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news__section {
    padding: 40px 0;
  }
  .page-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-industry-news__article-content {
    padding: 20px;
  }
  .page-industry-news__article-title {
    font-size: 1.3em;
  }
  .page-industry-news__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-industry-news__btn--secondary {
    margin-left: 0;
  }
  .page-industry-news__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-industry-news__floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-industry-news__floating-cta-icon {
    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.5em;
  }
  .page-industry-news__article-title {
    font-size: 1.2em;
  }
  .page-industry-news__floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-industry-news__floating-cta-icon {
    margin-left: 5px;
  }
}