.page-industry-news-trends-tech-innovation {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A192F; /* Main dark background */
}

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

.page-industry-news-trends-tech-innovation__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3b5a 100%); /* Dark blue gradient */
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends-tech-innovation__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  filter: grayscale(100%);
}

.page-industry-news-trends-tech-innovation__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-trends-tech-innovation__subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.page-industry-news-trends-tech-innovation__section--alt-bg {
  background-color: #1a2b47; /* Slightly lighter dark blue for contrast */
}

.page-industry-news-trends-tech-innovation__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-industry-news-trends-tech-innovation__section-subtitle {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-industry-news-trends-tech-innovation__heading-small {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-news-trends-tech-innovation__text {
  font-size: 1.1em;
  color: #F8F8F8;
  margin-bottom: 20px;
}

.page-industry-news-trends-tech-innovation__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for buttons */
  color: #0A192F; /* Dark blue for button text */
  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;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

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

.page-industry-news-trends-tech-innovation__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-industry-news-trends-tech-innovation__btn--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-industry-news-trends-tech-innovation__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  border-color: #FFD700;
}

.page-industry-news-trends-tech-innovation__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-industry-news-trends-tech-innovation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 768px) {
  .page-industry-news-trends-tech-innovation__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-industry-news-trends-tech-innovation__grid-item {
  background-color: #0A192F; /* Dark blue background for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-industry-news-trends-tech-innovation__section--alt-bg .page-industry-news-trends-tech-innovation__grid-item {
  background-color: #1a2b47;
}

.page-industry-news-trends-tech-innovation__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-industry-news-trends-tech-innovation__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.page-industry-news-trends-tech-innovation__cta-section {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%); /* Gold gradient for CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A192F; /* Dark blue text on gold background */
}

.page-industry-news-trends-tech-innovation__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0A192F;
}

.page-industry-news-trends-tech-innovation__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #222;
}

.page-industry-news-trends-tech-innovation__cta-buttons .page-industry-news-trends-tech-innovation__btn {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-industry-news-trends-tech-innovation__title {
    font-size: 3em;
  }
  .page-industry-news-trends-tech-innovation__subtitle {
    font-size: 1.2em;
  }
  .page-industry-news-trends-tech-innovation__section-title {
    font-size: 2.5em;
  }
  .page-industry-news-trends-tech-innovation__section-subtitle {
    font-size: 2em;
  }
  .page-industry-news-trends-tech-innovation__heading-small {
    font-size: 1.5em;
  }
  .page-industry-news-trends-tech-innovation__cta-title {
    font-size: 2.5em;
  }
  .page-industry-news-trends-tech-innovation__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 767px) {
  .page-industry-news-trends-tech-innovation__hero {
    padding: 80px 0 30px;
  }
  .page-industry-news-trends-tech-innovation__title {
    font-size: 2.5em;
  }
  .page-industry-news-trends-tech-innovation__subtitle {
    font-size: 1em;
  }
  .page-industry-news-trends-tech-innovation__section {
    padding: 40px 0;
  }
  .page-industry-news-trends-tech-innovation__section-title {
    font-size: 2em;
  }
  .page-industry-news-trends-tech-innovation__section-subtitle {
    font-size: 1.8em;
  }
  .page-industry-news-trends-tech-innovation__heading-small {
    font-size: 1.3em;
  }
  .page-industry-news-trends-tech-innovation__text {
    font-size: 1em;
  }
  .page-industry-news-trends-tech-innovation__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }
  .page-industry-news-trends-tech-innovation__btn--secondary {
    margin-left: 0;
  }
  .page-industry-news-trends-tech-innovation__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-industry-news-trends-tech-innovation__cta-title {
    font-size: 2em;
  }
  .page-industry-news-trends-tech-innovation__cta-text {
    font-size: 1em;
  }
  .page-industry-news-trends-tech-innovation__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-industry-news-trends-tech-innovation__cta-buttons .page-industry-news-trends-tech-innovation__btn {
    width: 80%;
    margin-bottom: 15px;
  }
}