.page-industry-news {
  font-family: Arial, sans-serif;
  color: #0A192F;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-industry-news__hero {
  background: linear-gradient(135deg, #0A192F 0%, #3a4a61 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.page-industry-news__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-industry-news__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-industry-news__btn--secondary:hover {
  background-color: #1a304a;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-industry-news__section {
  padding: 60px 0;
}

.page-industry-news__section:nth-of-type(even) {
  background-color: #F0F2F5; /* Light grey for alternating sections */
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 30px;
  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__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #333;
}

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

.page-industry-news__news-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-industry-news__news-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px 20px;
  color: #0A192F;
}

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

.page-industry-news__news-card h3 a:hover {
  color: #FFD700;
}

.page-industry-news__news-excerpt {
  font-size: 0.95em;
  color: #555;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-industry-news__news-card .page-industry-news__btn {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.page-industry-news__why-18win1 .page-industry-news__section-description {
  margin-bottom: 30px;
}

.page-industry-news__feature-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-industry-news__feature-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #0A192F;
  display: flex;
  align-items: center;
}

.page-industry-news__feature-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-industry-news__why-18win1 .page-industry-news__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-industry-news__cta-banner {
  background-color: #0A192F; /* Dark blue background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-industry-news__cta-content {
  max-width: 900px;
}

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

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

.page-industry-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-news__explore-more {
  text-align: center;
}

.page-industry-news__additional-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.page-industry-news__link {
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 8px 15px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-industry-news__link:hover {
  color: #FFD700;
  border-color: #FFD700;
}

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

  .page-industry-news__hero-subtitle,
  .page-industry-news__section-description,
  .page-industry-news__cta-description {
    font-size: 1em;
  }

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

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

  .page-industry-news__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-industry-news__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-industry-news__additional-links {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-industry-news__hero {
    padding: 60px 0;
  }

  .page-industry-news__section {
    padding: 40px 0;
  }

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