/* style/expert-insights-market-trends.css */
.page-expert-insights-market-trends {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-expert-insights-market-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-expert-insights-market-trends__hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5F9F);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-insights-market-trends__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
  opacity: 0.3;
  animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-expert-insights-market-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-expert-insights-market-insights__hero-title span {
  color: #ffffff;
}

.page-expert-insights-market-trends__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-expert-insights-market-trends__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-expert-insights-market-trends__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-expert-insights-market-trends__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-expert-insights-market-trends__intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555;
  text-align: justify;
}

.page-expert-insights-market-trends__heading {
  font-size: 2.2em;
  color: #0A2463;
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-expert-insights-market-trends__sub-heading {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-expert-insights-market-trends__content-section p {
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-expert-insights-market-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-insights-market-trends__image--full-width {
  width: 100%;
}

.page-expert-insights-market-trends__cta-button--inline {
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-expert-insights-market-trends__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #444;
}

.page-expert-insights-market-trends__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-expert-insights-market-trends__list-item strong {
  color: #0A2463;
}

.page-expert-insights-market-trends__cta-button--final {
  display: block;
  width: fit-content;
  margin: 50px auto 20px auto;
  padding: 20px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-expert-insights-market-trends__cta-button--final:hover {
  background-color: #1a3c7a;
  border-color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-expert-insights-market-trends__hero-title {
    font-size: 2.5em;
  }
  .page-expert-insights-market-trends__hero-subtitle {
    font-size: 1.2em;
  }
  .page-expert-insights-market-trends__heading {
    font-size: 1.8em;
  }
  .page-expert-insights-market-trends__sub-heading {
    font-size: 1.5em;
  }
  .page-expert-insights-market-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-expert-insights-market-trends__cta-button--final {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-expert-insights-market-trends__container {
    padding: 0 15px;
  }
  .page-expert-insights-market-trends__hero-section {
    padding: 80px 0;
  }
  .page-expert-insights-market-trends__content-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-expert-insights-market-trends__hero-title {
    font-size: 2em;
  }
  .page-expert-insights-market-trends__hero-subtitle {
    font-size: 1em;
  }
  .page-expert-insights-market-trends__heading {
    font-size: 1.6em;
  }
  .page-expert-insights-market-trends__sub-heading {
    font-size: 1.3em;
  }
  .page-expert-insights-market-trends__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-expert-insights-market-trends__cta-button--final {
    padding: 12px 25px;
    font-size: 1em;
  }
}