/* style/industry-news-trend-analysis.css */
.page-industry-news-trend-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A192F; /* Main background color */
}

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

.page-industry-news-trend-analysis__hero {
  background-color: #0A192F;
  background-image: linear-gradient(135deg, #0A192F 0%, #1a304e 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-industry-news-trend-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-industry-news-trend-analysis__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter gray for subtitle */
}

.page-industry-news-trend-analysis__section {
  padding: 60px 0;
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-industry-news-trend-analysis__section--dark {
  background-color: #1a2a43; /* Slightly lighter dark blue for alternating sections */
}

.page-industry-news-trend-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-industry-news-trend-analysis__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-industry-news-trend-analysis p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-industry-news-trend-analysis strong {
  color: #FFD700; /* Highlight keywords in gold */
}

.page-industry-news-trend-analysis__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-industry-news-trend-analysis__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-industry-news-trend-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trend-analysis__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news-trend-analysis__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-industry-news-trend-analysis__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-industry-news-trend-analysis__cta-group .page-industry-news-trend-analysis__cta-button {
  margin: 0 10px;
}

.page-industry-news-trend-analysis__cta-button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-trend-analysis__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

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

  .page-industry-news-trend-analysis__hero-subtitle {
    font-size: 1em;
  }

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

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

  .page-industry-news-trend-analysis__cta-group .page-industry-news-trend-analysis__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

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

  .page-industry-news-trend-analysis p,
  .page-industry-news-trend-analysis__list li {
    font-size: 0.95em;
  }
}