.page-industry-news-market-trend-analysis {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-industry-news-market-trend-analysis__hero-section {
  background: linear-gradient(135deg, #003366, #1a5a90);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-industry-news-market-trend-analysis__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
}

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

.page-industry-news-market-trend-analysis__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  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-market-trend-analysis__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

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

.page-industry-news-market-trend-analysis__cta-button--secondary:hover {
  background-color: #004488;
  color: #ffffff;
  border-color: #ffffff;
}

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

.page-industry-news-market-trend-analysis__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-industry-news-market-trend-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-industry-news-market-trend-analysis__subsection-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-industry-news-market-trend-analysis__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444444;
}

.page-industry-news-market-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.1);
}

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

.page-industry-news-market-trend-analysis__trend-item {
  background-color: #f0f6fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-market-trend-analysis__trend-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

.page-industry-news-market-trend-analysis__trend-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-industry-news-market-trend-analysis__trend-item p {
  font-size: 1em;
  color: #555555;
}

.page-industry-news-market-trend-analysis__trend-item .page-industry-news-market-trend-analysis__image {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

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

/* Floating Ad */
.page-industry-news-market-trend-analysis__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #003366;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  transform: translateX(120%); /* Start off-screen */
  transition: transform 0.5s ease-out;
}

.page-industry-news-market-trend-analysis__floating-ad.show {
  transform: translateX(0); /* Slide in */
}

.page-industry-news-market-trend-analysis__close-ad-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5em;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
  line-height: 1;
  padding: 0;
}

.page-industry-news-market-trend-analysis__close-ad-btn:hover {
  color: #FFCC00;
}

.page-industry-news-market-trend-analysis__ad-text {
  margin: 0;
  font-size: 1.1em;
  font-weight: normal;
  color: #e0e0e0;
}

.page-industry-news-market-trend-analysis__ad-button {
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

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

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

  .page-industry-news-market-trend-analysis__trend-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-industry-news-market-trend-analysis__hero-section {
    padding: 60px 0;
  }

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

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

  .page-industry-news-market-trend-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news-market-trend-analysis__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-industry-news-market-trend-analysis__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

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

  .page-industry-news-market-trend-analysis__floating-ad {
    flex-direction: column;
    align-items: flex-start;
    right: 10px;
    bottom: 10px;
    padding: 15px;
    gap: 10px;
  }

  .page-industry-news-market-trend-analysis__ad-text {
    font-size: 0.95em;
  }

  .page-industry-news-market-trend-analysis__ad-button {
    width: 100%;
    text-align: center;
  }
}

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

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

  .page-industry-news-market-trend-analysis__floating-ad {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
}