.page-expert-insights {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-expert-insights__hero-section {
  background: linear-gradient(135deg, #0A2463, #3a5c9f);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-expert-insights__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-insights__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-insights__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-expert-insights__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-expert-insights__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-expert-insights__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-expert-insights__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-expert-insights__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-expert-insights__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-expert-insights__main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .page-expert-insights__main-content {
    grid-template-columns: 1fr;
  }
}

.page-expert-insights__article {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-insights__section-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-expert-insights__article p {
  margin-bottom: 15px;
  color: #555;
}

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

.page-expert-insights__cta-banner {
  background: linear-gradient(90deg, #0A2463, #1e4a9f);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-expert-insights__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-expert-insights__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-expert-insights__sidebar {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-insights__sidebar-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-expert-insights__related-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-expert-insights__related-article-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-expert-insights__related-article-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-expert-insights__related-article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-expert-insights__related-article-link:hover .page-expert-insights__related-article-title {
  color: #FFD700;
}

.page-expert-insights__related-article-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.page-expert-insights__related-article-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 10px;
}

.page-expert-insights__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #0A2463;
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.page-expert-insights__btn--small:hover {
  background-color: #FFD700;
  color: #0A2463;
}

@media (max-width: 768px) {
  .page-expert-insights__hero-title {
    font-size: 2em;
  }

  .page-expert-insights__hero-subtitle {
    font-size: 1em;
  }

  .page-expert-insights__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-expert-insights__section-title {
    font-size: 1.8em;
  }

  .page-expert-insights__cta-title {
    font-size: 1.8em;
  }

  .page-expert-insights__sidebar-title {
    font-size: 1.6em;
  }
}