.page-industry-news-tech-innovations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333; /* Dark grey for general text on light background, contrast with #f8f8f8 is 11.5:1 (AA) */
  background-color: #f8f8f8;
}

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

.page-industry-news-tech-innovations__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3f479d 100%); /* Dark indigo gradient */
  color: #fff; /* White text on dark background, contrast is 15.5:1 (AAA) */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-tech-innovations__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23FFD700" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>') repeat;
  opacity: 0.2;
  z-index: 0;
}

.page-industry-news-tech-innovations__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-industry-news-tech-innovations__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title on dark background, contrast is 9.5:1 (AAA) */
}

.page-industry-news-tech-innovations__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-tech-innovations__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-industry-news-tech-innovations__section {
  padding: 60px 0;
}

.page-industry-news-tech-innovations__section--alt-bg {
  background-color: #e6e9f5; /* Lighter shade of main color for alt background, contrast with #1A237E text is 4.6:1 (AA) */
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Dark indigo for section titles on light background, contrast with #f8f8f8 is 11.5:1 (AA) */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-industry-news-tech-innovations__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.page-industry-news-tech-innovations__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-industry-news-tech-innovations__feature-item p {
  color: #444; /* Slightly lighter text for feature items on white background, contrast is 10.3:1 (AAA) */
}

.page-industry-news-tech-innovations__feature-heading {
  font-size: 1.8em;
  color: #1A237E; /* Dark indigo for feature headings on white background, contrast is 11.5:1 (AA) */
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-industry-news-tech-innovations__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news-tech-innovations__image--full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin: 40px auto;
  display: block;
}

.page-industry-news-tech-innovations__cta-box {
  background-color: #1A237E;
  color: #fff; /* White text on dark indigo, contrast is 15.5:1 (AAA) */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-industry-news-tech-innovations__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: 500;
}

.page-industry-news-tech-innovations__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text on gold button, contrast is 9.5:1 (AAA) */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-industry-news-tech-innovations__related-links {
  padding: 40px 0;
  background-color: #f0f2f7;
  text-align: center;
}

.page-industry-news-tech-innovations__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.page-industry-news-tech-innovations__link-list li a {
  color: #1A237E; /* Dark indigo link on light background, contrast is 11.5:1 (AA) */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 2px solid #1A237E;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-industry-news-tech-innovations__link-list li a:hover {
  background-color: #1A237E;
  color: #FFD700; /* Gold text on dark indigo, contrast is 9.5:1 (AAA) */
}

.page-industry-news-tech-innovations .highlight {
  color: #FFD700;
}

/* Hidden state for JS animation */
.page-industry-news-tech-innovations--hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-industry-news-tech-innovations--fade-in {
  opacity: 1;
  transform: translateY(0);
}

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

  .page-industry-news-tech-innovations__subtitle {
    font-size: 1em;
  }

  .page-industry-news-tech-innovations__section-title {
    font-size: 2em;
  }

  .page-industry-news-tech-innovations__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-tech-innovations__cta-text {
    font-size: 1.2em;
  }

  .page-industry-news-tech-innovations__link-list {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-industry-news-tech-innovations__hero-section {
    padding: 60px 0;
  }

  .page-industry-news-tech-innovations__main-title {
    font-size: 2em;
  }

  .page-industry-news-tech-innovations__section-title {
    font-size: 1.8em;
  }

  .page-industry-news-tech-innovations__feature-heading {
    font-size: 1.5em;
  }

  .page-industry-news-tech-innovations__cta-box {
    padding: 30px;
  }
}