/* style/industry-news-tech-innovations.css */
.page-industry-news-tech-innovations {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  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, #0056b3);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-industry-news-tech-innovations__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Slightly lighter for contrast */
}

.page-industry-news-tech-innovations__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

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

.page-industry-news-tech-innovations__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-industry-news-tech-innovations__section--intro {
  background-color: #f0f8ff; /* Light blue background for intro */
  padding: 40px 0;
}

.page-industry-news-tech-innovations__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-industry-news-tech-innovations__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #495057; /* Dark gray for body text */
  text-align: justify;
}

.page-industry-news-tech-innovations__feature-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-industry-news-tech-innovations__feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background-color: #fcfdff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-industry-news-tech-innovations__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-industry-news-tech-innovations__feature-image {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.page-industry-news-tech-innovations__feature-title {
  font-size: 1.8em;
  color: #007bff; /* Primary blue for feature titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-industry-news-tech-innovations__feature-description {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-industry-news-tech-innovations__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-industry-news-tech-innovations__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-industry-news-tech-innovations__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  color: #000;
}

.page-industry-news-tech-innovations__btn--secondary {
  background-color: transparent;
  color: #007bff; /* Primary blue */
  border: 2px solid #007bff;
}

.page-industry-news-tech-innovations__btn--secondary:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-industry-news-tech-innovations__highlight {
  color: #0056b3; /* Darker blue for highlight */
  font-weight: bold;
}

.page-industry-news-tech-innovations__cta-content {
  text-align: center;
  background-color: #e6f2ff; /* Light blue background for CTA */
  padding: 50px;
  border-radius: 8px;
}

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

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

  .page-industry-news-tech-innovations__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-industry-news-tech-innovations__feature-item {
    padding: 20px;
  }

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

  .page-industry-news-tech-innovations__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-industry-news-tech-innovations__hero-image {
    max-width: 90%;
  }
}

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

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

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

  .page-industry-news-tech-innovations__feature-image {
    height: 180px;
  }
}