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

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

.page-industry-news-2024-market-report .hero-section {
  background: linear-gradient(135deg, #FFD700, #1A237E);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-2024-market-report .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-2024-market-report .hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-industry-news-2024-market-report .btn {
  display: inline-block;
  background-color: #FFD700; /* Main color */
  color: #1A237E; /* Dark blue for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news-2024-market-report .btn:hover {
  background-color: #e5c100; /* Slightly darker gold */
  color: #0d123d; /* Slightly darker blue */
  transform: translateY(-3px);
}

.page-industry-news-2024-market-report .content-block {
  padding: 60px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-industry-news-2024-market-report .content-block:nth-child(even) {
  background-color: #f0f4f7;
}

.page-industry-news-2024-market-report .section-title {
  font-size: 2.5em;
  color: #1A237E; /* Auxiliary color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-industry-news-2024-market-report .subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 2px solid #1A237E; /* Dark blue underline */
  padding-bottom: 10px;
  display: inline-block;
  line-height: 1.2;
}

.page-industry-news-2024-market-report p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-industry-news-2024-market-report ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-industry-news-2024-market-report ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333;
}

.page-industry-news-2024-market-report ul li::before {
  content: '✓';
  color: #FFD700; /* Main color */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-industry-news-2024-market-report .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-industry-news-2024-market-report .highlight {
  color: #1A237E;
  font-weight: bold;
}

.page-industry-news-2024-market-report .action-btn, .page-industry-news-2024-market-report .final-cta-btn {
  margin-top: 30px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: #1A237E;
  color: #FFD700;
}

.page-industry-news-2024-market-report .action-btn:hover, .page-industry-news-2024-market-report .final-cta-btn:hover {
  background-color: #0d123d;
  color: #e5c100;
}

/* Hidden state for JS animation */
.page-industry-news-2024-market-report .hidden-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-industry-news-2024-market-report .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-industry-news-2024-market-report .hero-title {
    font-size: 2.5em;
  }

  .page-industry-news-2024-market-report .hero-description {
    font-size: 1.2em;
  }

  .page-industry-news-2024-market-report .section-title {
    font-size: 2em;
  }

  .page-industry-news-2024-market-report .subsection-title {
    font-size: 1.5em;
  }

  .page-industry-news-2024-market-report p, .page-industry-news-2024-market-report ul li {
    font-size: 1em;
  }

  .page-industry-news-2024-market-report .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-industry-news-2024-market-report .hero-description {
    font-size: 1em;
  }

  .page-industry-news-2024-market-report .section-title {
    font-size: 1.8em;
  }

  .page-industry-news-2024-market-report .subsection-title {
    font-size: 1.3em;
  }

  .page-industry-news-2024-market-report .content-block {
    padding: 40px 0;
  }
}