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

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

.page-industry-news-tech-innovations__bg-dark {
  background-color: #0A2342;
  color: #F0F0F0; /* Light text on dark background */
}

.page-industry-news-tech-innovations__bg-light {
  background-color: #F8F8F8;
  color: #333;
}

.page-industry-news-tech-innovations__text-light {
  color: #F0F0F0;
}

.page-industry-news-tech-innovations__text-gold {
  color: #FFD700;
}

/* Hero Section */
.page-industry-news-tech-innovations__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #3a506b 100%);
  color: #F0F0F0;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-tech-innovations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-tech-innovations__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* CTA Button General Style */
.page-industry-news-tech-innovations__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  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: 2px solid #FFD700;
}

.page-industry-news-tech-innovations__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-industry-news-tech-innovations__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-tech-innovations__cta-button--outline:hover {
  background-color: #FFD700;
  color: #0A2342;
}

/* Content Sections */
.page-industry-news-tech-innovations__content-section {
  padding: 80px 0;
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  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: #FFD700;
  border-radius: 2px;
}

.page-industry-news-tech-innovations__bg-dark .page-industry-news-tech-innovations__section-title::after {
  background-color: #F0F0F0;
}

.page-industry-news-tech-innovations__article-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-industry-news-tech-innovations__article-layout--reverse {
  flex-direction: row-reverse;
}

.page-industry-news-tech-innovations__article-text {
  flex: 1;
  font-size: 1.1em;
}

.page-industry-news-tech-innovations__article-text p {
  margin-bottom: 20px;
}

.page-industry-news-tech-innovations__article-image {
  flex: 1;
  text-align: center;
}

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

.page-industry-news-tech-innovations__inline-cta {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-industry-news-tech-innovations__inline-cta:hover {
  color: #e6c200;
  border-color: #e6c200;
}

.page-industry-news-tech-innovations__inline-cta--gold {
  color: #F0F0F0;
  border-color: #F0F0F0;
}

.page-industry-news-tech-innovations__inline-cta--gold:hover {
  color: #FFD700;
  border-color: #FFD700;
}

/* FAQ Section */
.page-industry-news-tech-innovations__faq-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-industry-news-tech-innovations__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-industry-news-tech-innovations__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news-tech-innovations__faq-question {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-industry-news-tech-innovations__faq-answer {
  font-size: 1.05em;
  color: #F0F0F0;
}

/* CTA Banner */
.page-industry-news-tech-innovations__cta-banner {
  background-color: #FFD700;
  color: #0A2342;
  padding: 80px 0;
  text-align: center;
}

.page-industry-news-tech-innovations__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2342;
}

.page-industry-news-tech-innovations__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

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

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

  .page-industry-news-tech-innovations__article-layout {
    flex-direction: column;
    text-align: center;
  }

  .page-industry-news-tech-innovations__article-layout--reverse {
    flex-direction: column;
  }

  .page-industry-news-tech-innovations__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-industry-news-tech-innovations__hero-section,
  .page-industry-news-tech-innovations__content-section,
  .page-industry-news-tech-innovations__faq-section,
  .page-industry-news-tech-innovations__cta-banner {
    padding: 60px 0;
  }

  .page-industry-news-tech-innovations__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-industry-news-tech-innovations__cta-buttons {
    flex-direction: column;
  }

  .page-industry-news-tech-innovations__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-industry-news-tech-innovations__cta-title {
    font-size: 1.6em;
  }

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