/* style/industry-news-market-analysis.css */
.page-industry-news-market-analysis {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for general text - contrast with #f8f8f8 is 13.6:1 (AA) */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background */
}

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

.page-industry-news-market-analysis__hero {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #ffffff; /* White text on dark background - contrast with #003366 is 17.5:1 (AAA) */
  padding: 100px 0;
  text-align: center;
}

.page-industry-news-market-analysis__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Golden yellow for main title - contrast with #003366 is 7.2:1 (AAA) */
  font-weight: bold;
}

.page-industry-news-market-analysis__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0; /* Light gray for subtitle - contrast with #003366 is 9.8:1 (AAA) */
}

.page-industry-news-market-analysis__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.page-industry-news-market-analysis__section--dark {
  background-color: #003366; /* Dark blue background */
  color: #ffffff; /* White text on dark background - contrast with #003366 is 17.5:1 (AAA) */
}

.page-industry-news-market-analysis__section--dark .page-industry-news-market-analysis__section-title,
.page-industry-news-market-analysis__section--dark .page-industry-news-market-analysis__sub-title {
  color: #FFCC00; /* Golden yellow for titles on dark background - contrast with #003366 is 7.2:1 (AAA) */
}

.page-industry-news-market-analysis__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue for section titles - contrast with #ffffff is 17.5:1 (AAA) */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-industry-news-market-analysis__sub-title {
  font-size: 1.8em;
  color: #003366; /* Dark blue for sub-titles - contrast with #ffffff is 17.5:1 (AAA) */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-industry-news-market-analysis__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

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

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

.page-industry-news-market-analysis__list li strong {
  color: #003366; /* Ensure strong text in list items also has good contrast */
}

.page-industry-news-market-analysis__section--dark .page-industry-news-market-analysis__list li strong {
  color: #FFCC00; /* Strong text on dark background */
}

.page-industry-news-market-analysis__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-industry-news-market-analysis__button--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Dark blue text - contrast with #FFCC00 is 7.2:1 (AAA) */
  border: 2px solid #FFCC00;
}

.page-industry-news-market-analysis__button--primary:hover {
  background-color: #e6b800; /* Slightly darker yellow */
  color: #002244; /* Slightly darker blue */
}

.page-industry-news-market-analysis__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Golden yellow text - contrast with #003366 is 7.2:1 (AAA) */
  border: 2px solid #FFCC00;
}

.page-industry-news-market-analysis__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

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

.page-industry-news-market-analysis__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

/* Simple fade-in animation for sections */
.page-industry-news-market-analysis .fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-industry-news-market-analysis .fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-news-market-analysis__hero-title {
    font-size: 2.5em;
  }
  .page-industry-news-market-analysis__hero-subtitle {
    font-size: 1.2em;
  }
  .page-industry-news-market-analysis__section-title {
    font-size: 2em;
  }
  .page-industry-news-market-analysis__sub-title {
    font-size: 1.5em;
  }
  .page-industry-news-market-analysis__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-industry-news-market-analysis__hero-title {
    font-size: 2em;
  }
  .page-industry-news-market-analysis__hero-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.3em;
  }
  .page-industry-news-market-analysis__button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}