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

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

/* Hero Section */
.page-industry-news-market-analysis__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-industry-news-market-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-industry-news-market-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-industry-news-market-analysis__hero .page-industry-news-market-analysis__container {
  position: relative;
  z-index: 1;
}

.page-industry-news-market-analysis__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* General Section Styling */
.page-industry-news-market-analysis__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-industry-news-market-analysis__section:nth-of-type(even) {
  background-color: #f0f4f7;
}

.page-industry-news-market-analysis__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-industry-news-market-analysis__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-industry-news-market-analysis__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.page-industry-news-market-analysis__grid-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  border-top: 4px solid #FFCC00;
}

.page-industry-news-market-analysis__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 15px;
  color: #555;
}

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

.page-industry-news-market-analysis__list-strong {
  color: #003366;
}

.page-industry-news-market-analysis__illustration {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-industry-news-market-analysis__illustration--large {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

/* CTA Button Styling */
.page-industry-news-market-analysis__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-industry-news-market-analysis__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-right: 15px;
}

.page-industry-news-market-analysis__cta-button--secondary:hover {
  background-color: #004080;
  border-color: #e6b800;
}

.page-industry-news-market-analysis__cta-button--tertiary {
  background-color: #f0f4f7;
  color: #003366;
  border: 2px solid #003366;
}

.page-industry-news-market-analysis__cta-button--tertiary:hover {
  background-color: #e0e0e0;
  border-color: #002244;
}

.page-industry-news-market-analysis__cta-box {
  background-color: #003366;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-market-analysis__cta-box p {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: 300;
  color: #e0e0e0;
}

/* Competitive Advantage Grid */
.page-industry-news-market-analysis__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-industry-news-market-analysis__advantage-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  border-bottom: 4px solid #003366;
}

.page-industry-news-market-analysis__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-industry-news-market-analysis__advantage-item .page-industry-news-market-analysis__sub-title {
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-industry-news-market-analysis__advantage-item p {
  color: #555;
  font-size: 0.95em;
}

/* Keyword highlighting */
.page-industry-news-market-analysis .highlight, .page-industry-news-market-analysis .keyword {
  color: #FFCC00;
  font-weight: bold;
}

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

  .page-industry-news-market-analysis__subtitle {
    font-size: 1.1em;
  }

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

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

  .page-industry-news-market-analysis__content-grid,
  .page-industry-news-market-analysis__advantage-grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-market-analysis__cta-box p {
    font-size: 1.2em;
  }

  .page-industry-news-market-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-market-analysis__cta-button--secondary, .page-industry-news-market-analysis__cta-button--tertiary {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

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

  .page-industry-news-market-analysis__subtitle {
    font-size: 1em;
  }

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

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

  .page-industry-news-market-analysis__cta-box p {
    font-size: 1em;
  }

  .page-industry-news-market-analysis__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}