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

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

.page-industry-news-technology-innovations__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #204060 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-technology-innovations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  line-height: 1.2;
}

.page-industry-news-technology-innovations__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-industry-news-technology-innovations__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-industry-news-technology-innovations__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}

.page-industry-news-technology-innovations__section-title {
  font-size: 2.5em;
  color: #0A2239;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 700;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-industry-news-technology-innovations__subsection-title {
  font-size: 1.8em;
  color: #204060;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-industry-news-technology-innovations__feature-block {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.page-industry-news-technology-innovations__feature-block--reversed {
  flex-direction: row-reverse;
}

.page-industry-news-technology-innovations__feature-image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

.page-industry-news-technology-innovations__feature-content {
  flex: 1.5;
}

.page-industry-news-technology-innovations__text-block {
  margin-bottom: 60px;
  padding: 20px;
  background-color: #f2f7fc;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-industry-news-technology-innovations__text-block p {
  margin-bottom: 15px;
  color: #555;
}

.page-industry-news-technology-innovations__cta-section {
  background-color: #0A2239;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-industry-news-technology-innovations__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-industry-news-technology-innovations__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.page-industry-news-technology-innovations__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.page-industry-news-technology-innovations__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-industry-news-technology-innovations__btn--primary:hover {
  background-color: #e6c200;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.page-industry-news-technology-innovations__btn--secondary {
  background-color: #204060;
  color: #ffffff;
  border: 2px solid #204060;
}

.page-industry-news-technology-innovations__btn--secondary:hover {
  background-color: #0A2239;
  border-color: #0A2239;
  transform: translateY(-2px);
}

.page-industry-news-technology-innovations__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-technology-innovations__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-industry-news-technology-innovations__btn--quaternary {
  background-color: #546474;
  color: #ffffff;
}

.page-industry-news-technology-innovations__btn--quaternary:hover {
  background-color: #6c7a88;
  transform: translateY(-2px);
}

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

  .page-industry-news-technology-innovations__hero-subtitle {
    font-size: 1.3em;
  }

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

  .page-industry-news-technology-innovations__subsection-title {
    font-size: 1.6em;
  }

  .page-industry-news-technology-innovations__feature-block {
    flex-direction: column;
    text-align: center;
  }

  .page-industry-news-technology-innovations__feature-block--reversed {
    flex-direction: column;
  }

  .page-industry-news-technology-innovations__feature-content {
    margin-top: 30px;
  }

  .page-industry-news-technology-innovations__section-title,
  .page-industry-news-technology-innovations__subsection-title {
    text-align: center;
    padding-left: 0;
    border-left: none;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page-industry-news-technology-innovations__hero-section {
    padding: 80px 0;
  }

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

  .page-industry-news-technology-innovations__hero-subtitle {
    font-size: 1.1em;
  }

  .page-industry-news-technology-innovations__content-section {
    padding: 40px 0;
  }

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

  .page-industry-news-technology-innovations__subsection-title {
    font-size: 1.4em;
  }

  .page-industry-news-technology-innovations__cta-title {
    font-size: 2.5em;
  }

  .page-industry-news-technology-innovations__cta-description {
    font-size: 1.1em;
  }

  .page-industry-news-technology-innovations__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news-technology-innovations__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-industry-news-technology-innovations__hero-subtitle {
    font-size: 1em;
  }

  .page-industry-news-technology-innovations__section-title {
    font-size: 1.5em;
  }

  .page-industry-news-technology-innovations__subsection-title {
    font-size: 1.2em;
  }

  .page-industry-news-technology-innovations__btn {
    width: 100%;
    max-width: 250px;
  }

  .page-industry-news-technology-innovations__cta-title {
    font-size: 2em;
  }
}