/* style/industry-news-caxeng-tech-innovation.css */
.page-industry-news-caxeng-tech-innovation {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #0A2239; /* Primary dark blue */
}

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

.page-industry-news-caxeng-tech-innovation__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-caxeng-tech-innovation__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary gold */
  font-weight: 700;
}

.page-industry-news-caxeng-tech-innovation__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-industry-news-caxeng-tech-innovation__section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-industry-news-caxeng-tech-innovation__section--alt-bg {
  background-color: #1A3A5A;
}

.page-industry-news-caxeng-tech-innovation__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Secondary gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news-caxeng-tech-innovation__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Accent red */
  border-radius: 2px;
}

.page-industry-news-caxeng-tech-innovation__sub-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-industry-news-caxeng-tech-innovation__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-industry-news-caxeng-tech-innovation__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-industry-news-caxeng-tech-innovation__list-item {
  background-color: #1A3A5A; /* Slightly lighter dark blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-caxeng-tech-innovation__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-industry-news-caxeng-tech-innovation__list-item::before {
  content: '✓';
  color: #FFD700; /* Secondary gold */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-industry-news-caxeng-tech-innovation__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-industry-news-caxeng-tech-innovation__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-industry-news-caxeng-tech-innovation__image:hover {
  transform: scale(1.02);
}

.page-industry-news-caxeng-tech-innovation__image-caption {
  font-style: italic;
  color: #B0B0B0;
  margin-top: 15px;
  font-size: 0.95em;
}

.page-industry-news-caxeng-tech-innovation__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin: 10px;
}

.page-industry-news-caxeng-tech-innovation__button--primary {
  background-color: #FFD700; /* Secondary gold */
  color: #0A2239; /* Primary dark blue */
  border: 2px solid #FFD700;
}

.page-industry-news-caxeng-tech-innovation__button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-industry-news-caxeng-tech-innovation__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Secondary gold */
  border: 2px solid #FFD700;
}

.page-industry-news-caxeng-tech-innovation__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-industry-news-caxeng-tech-innovation__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .page-industry-news-caxeng-tech-innovation__hero-description,
  .page-industry-news-caxeng-tech-innovation__paragraph,
  .page-industry-news-caxeng-tech-innovation__list-item {
    font-size: 1em;
  }

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

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

  .page-industry-news-caxeng-tech-innovation__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

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

  .page-industry-news-caxeng-tech-innovation__sub-title {
    font-size: 1.5em;
  }

  .page-industry-news-caxeng-tech-innovation__button {
    width: 100%;
    margin: 10px 0;
  }
}