/* style/industry-news-tech-innovations.css */
.page-industry-news-tech-innovations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.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, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-industry-news-tech-innovations__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff; /* Ensure high contrast */
  font-weight: bold;
}

.page-industry-news-tech-innovations__subtitle {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Slightly lighter for contrast on gradient */
}

.page-industry-news-tech-innovations__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-news-tech-innovations__button {
  display: inline-block;
  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;
  border: none;
  cursor: pointer;
}

.page-industry-news-tech-innovations__button--primary {
  background-color: #0056b3; /* Darker blue for contrast on #007bff */
  color: #fff;
}

.page-industry-news-tech-innovations__button--primary:hover {
  background-color: #003f7f;
  transform: translateY(-2px);
}

.page-industry-news-tech-innovations__button--secondary {
  background-color: #218838; /* Darker green for contrast on #28a745 */
  color: #fff;
}

.page-industry-news-tech-innovations__button--secondary:hover {
  background-color: #1a6b2a;
  transform: translateY(-2px);
}

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

.page-industry-news-tech-innovations__section--gray {
  background-color: #f0f2f5;
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news-tech-innovations__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #28a745;
  border-radius: 2px;
}

.page-industry-news-tech-innovations__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.page-industry-news-tech-innovations__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-industry-news-tech-innovations__sub-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker blue for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-news-tech-innovations__image-wrapper {
  text-align: center;
}

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

.page-industry-news-tech-innovations__section--cta {
  background: linear-gradient(45deg, #007bff, #28a745);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.page-industry-news-tech-innovations__section--cta .page-industry-news-tech-innovations__section-title {
  color: #fff;
}

.page-industry-news-tech-innovations__section--cta .page-industry-news-tech-innovations__section-title::after {
  background-color: #fff;
}

.page-industry-news-tech-innovations__section--cta .page-industry-news-tech-innovations__subtitle {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-tech-innovations__main-title {
    font-size: 2.8em;
  }
  .page-industry-news-tech-innovations__subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-tech-innovations__section-title {
    font-size: 2em;
  }
  .page-industry-news-tech-innovations__content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-industry-news-tech-innovations__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-industry-news-tech-innovations__image-wrapper {
    order: -1; /* Image first on smaller screens */
  }
  .page-industry-news-tech-innovations__hero-section,
  .page-industry-news-tech-innovations__section,
  .page-industry-news-tech-innovations__section--cta {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-industry-news-tech-innovations__main-title {
    font-size: 2.2em;
  }
  .page-industry-news-tech-innovations__subtitle {
    font-size: 1em;
  }
  .page-industry-news-tech-innovations__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-tech-innovations__sub-title {
    font-size: 1.5em;
  }
  .page-industry-news-tech-innovations__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-tech-innovations__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-tech-innovations__main-title {
    font-size: 1.8em;
  }
  .page-industry-news-tech-innovations__section-title {
    font-size: 1.5em;
  }
  .page-industry-news-tech-innovations__sub-title {
    font-size: 1.3em;
  }
  .page-industry-news-tech-innovations__container {
    padding: 0 15px;
  }
}