/* style/news-regulatory-changes.css */
.page-news-regulatory-changes {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2463; /* Main primary dark blue */
}

.page-news-regulatory-changes__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-regulatory-changes__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1f46b5 100%); /* Primary to a slightly lighter blue */
  padding: 100px 0;
  text-align: center;
  color: #F8F8F8;
}

.page-news-regulatory-changes__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E0B94A; /* Gold for main title */
}

.page-news-regulatory-changes__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-news-regulatory-changes__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
}

.page-news-regulatory-changes__btn--primary {
  background-color: #E0B94A; /* Gold */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #E0B94A;
}

.page-news-regulatory-changes__btn--primary:hover {
  background-color: #f5db9c; /* Lighter gold */
  color: #0A2463;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__btn--secondary {
  background-color: #0A2463; /* Dark blue */
  color: #E0B94A; /* Gold text */
  border: 2px solid #E0B94A;
}

.page-news-regulatory-changes__btn--secondary:hover {
  background-color: #1f46b5; /* Lighter blue */
  color: #f5db9c;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__btn--ghost {
  background-color: transparent;
  color: #E0B94A;
  border: 2px solid #E0B94A;
}

.page-news-regulatory-changes__btn--ghost:hover {
  background-color: #E0B94A;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__section {
  padding: 60px 0;
  background-color: #0A2463;
  color: #F8F8F8;
}

.page-news-regulatory-changes__section:nth-of-type(even) {
  background-color: #1a3c7c; /* Slightly lighter dark blue for contrast */
}

.page-news-regulatory-changes__section-title {
  font-size: 2.5em;
  color: #E0B94A;
  margin-bottom: 30px;
  text-align: center;
}

.page-news-regulatory-changes__section h3 {
  font-size: 1.8em;
  color: #f5db9c; /* Complementary gold for subheadings */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-news-regulatory-changes__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D3D3D3;
}

.page-news-regulatory-changes__section ul,
.page-news-regulatory-changes__section ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D3D3D3;
}

.page-news-regulatory-changes__section li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-news-regulatory-changes__section ul li::marker {
  color: #E0B94A;
}

.page-news-regulatory-changes__section ol li::marker {
  color: #E0B94A;
  font-weight: bold;
}

.page-news-regulatory-changes__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-news-regulatory-changes__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 2px solid #E0B94A;
}

.page-news-regulatory-changes__cta {
  background-color: #E0B94A; /* Gold background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A2463; /* Dark blue text */
}

.page-news-regulatory-changes__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-news-regulatory-changes__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #0A2463;
  opacity: 0.9;
}

.page-news-regulatory-changes .highlight {
  color: #E0B94A;
}

.page-news-regulatory-changes__cta .highlight {
  color: #0A2463;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-news-regulatory-changes__hero-title {
    font-size: 2.5em;
  }
  .page-news-regulatory-changes__hero-subtitle {
    font-size: 1.2em;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 2em;
  }
  .page-news-regulatory-changes__section h3 {
    font-size: 1.5em;
  }
  .page-news-regulatory-changes__section p,
  .page-news-regulatory-changes__section li {
    font-size: 1em;
  }
  .page-news-regulatory-changes__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news-regulatory-changes__cta-title {
    font-size: 2.2em;
  }
  .page-news-regulatory-changes__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-news-regulatory-changes__hero-title {
    font-size: 2em;
  }
  .page-news-regulatory-changes__hero-subtitle {
    font-size: 1em;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__section h3 {
    font-size: 1.3em;
  }
  .page-news-regulatory-changes__btn {
    display: block;
    margin: 10px auto;
  }
}