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

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

/* Hero Section */
.page-news-industry-trends__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3f479e 100%); /* Deeper blue-purple */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-industry-trends__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFC107; /* Gold accent for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-news-industry-trends__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-news-industry-trends__hero-cta {
  display: inline-block;
  background-color: #FFC107; /* Gold button */
  color: #1A237E; /* Deep blue-purple 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;
}

.page-news-industry-trends__hero-cta:hover {
  background-color: #e5ac00; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

/* General Section Styles */
.page-news-industry-trends__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-news-industry-trends__section--alt-bg {
  background-color: #f0f2f5; /* Light grey background for alternating sections */
}

.page-news-industry-trends__section-title {
  font-size: 2.2em;
  color: #1A237E; /* Deep blue-purple */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-news-industry-trends__sub-title {
  font-size: 1.6em;
  color: #1A237E; /* Deep blue-purple */
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 5px solid #FFC107;
  padding-left: 15px;
}

.page-news-industry-trends__section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-news-industry-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Call to Action Banner */
.page-news-industry-trends__cta-banner {
  background: linear-gradient(45deg, #1A237E, #4a549e);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-news-industry-trends__cta-title {
  font-size: 2.5em;
  color: #FFC107; /* Gold accent */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-trends__cta-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-news-industry-trends__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-news-industry-trends__button--primary {
  background-color: #FFC107; /* Gold button */
  color: #1A237E; /* Deep blue-purple text */
}

.page-news-industry-trends__button--primary:hover {
  background-color: #e5ac00;
  transform: translateY(-3px);
}

.page-news-industry-trends__button--secondary {
  background-color: transparent;
  color: #FFC107; /* Gold text */
  border-color: #FFC107;
}

.page-news-industry-trends__button--secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-3px);
}

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

  .page-news-industry-trends__hero-description,
  .page-news-industry-trends__section p,
  .page-news-industry-trends__cta-description {
    font-size: 1em;
  }

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

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

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

  .page-news-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-industry-trends__button {
    width: 80%;
    margin: 0 auto;
  }
}

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

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

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

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

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