/* style/industry-news-trends-market-analysis.css */
.page-industry-news-trends-market-analysis {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-industry-news-trends-market-analysis__hero {
  background: linear-gradient(135deg, #1A237E, #3F51B5);
  color: #ffffff;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends-market-analysis__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-trends-market-analysis__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-trends-market-analysis__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-industry-news-trends-market-analysis__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-industry-news-trends-market-analysis__section--dark {
  background-color: #1A237E;
  color: #f4f4f4;
}

.page-industry-news-trends-market-analysis__section-title {
  font-size: 2.2em;
  color: #1A237E;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.page-industry-news-trends-market-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-industry-news-trends-market-analysis__section-title--light {
  color: #FFD700;
}

.page-industry-news-trends-market-analysis__section-title--light::after {
  background-color: #f4f4f4;
}

.page-industry-news-trends-market-analysis__subsection-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-industry-news-trends-market-analysis__subsection-title--light {
  color: #FFD700;
  border-left-color: #f4f4f4;
}

.page-industry-news-trends-market-analysis__paragraph--light {
  color: #e0e0e0;
}

.page-industry-news-trends-market-analysis__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-industry-news-trends-market-analysis__list li {
  margin-bottom: 10px;
  color: #555;
}

.page-industry-news-trends-market-analysis__list--light li {
  color: #e0e0e0;
}

.page-industry-news-trends-market-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-trends-market-analysis__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  width: 40%;
}

.page-industry-news-trends-market-analysis__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 40%;
}

.page-industry-news-trends-market-analysis__cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(90deg, #1A237E, #3F51B5);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends-market-analysis__cta-content {
  position: relative;
  z-index: 1;
}

.page-industry-news-trends-market-analysis__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-industry-news-trends-market-analysis__cta-text {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-industry-news-trends-market-analysis__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-trends-market-analysis__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.page-industry-news-trends-market-analysis__cta-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Clearfix for floated images */
.page-industry-news-trends-market-analysis__section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-trends-market-analysis__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-trends-market-analysis__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends-market-analysis__subsection-title {
    font-size: 1.5em;
  }
  .page-industry-news-trends-market-analysis__image--left,
  .page-industry-news-trends-market-analysis__image--right {
    float: none;
    margin: 20px auto;
    width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-industry-news-trends-market-analysis__hero {
    padding: 60px 0 30px;
  }
  .page-industry-news-trends-market-analysis__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends-market-analysis__hero-subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-trends-market-analysis__section {
    padding: 40px 0;
  }
  .page-industry-news-trends-market-analysis__section-title {
    font-size: 1.6em;
  }
  .page-industry-news-trends-market-analysis__subsection-title {
    font-size: 1.3em;
  }
  .page-industry-news-trends-market-analysis__cta-title {
    font-size: 2em;
  }
  .page-industry-news-trends-market-analysis__cta-text {
    font-size: 1em;
  }
  .page-industry-news-trends-market-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-industry-news-trends-market-analysis__hero-title {
    font-size: 1.5em;
  }
  .page-industry-news-trends-market-analysis__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news-trends-market-analysis__section-title {
    font-size: 1.4em;
  }
  .page-industry-news-trends-market-analysis__subsection-title {
    font-size: 1.2em;
  }
  .page-industry-news-trends-market-analysis__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends-market-analysis__cta-button {
    width: 90%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page-industry-news-trends-market-analysis__image--left,
  .page-industry-news-trends-market-analysis__image--right {
    width: 95%;
  }
}