/* style/news-regulatory-changes.css */
.page-news-regulatory-changes {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for readability on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-news-regulatory-changes__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d5f 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-news-regulatory-changes__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.page-news-regulatory-changes__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  position: relative;
  z-index: 1;
}

.page-news-regulatory-changes__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  position: relative;
  z-index: 1;
}

.page-news-regulatory-changes__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-news-regulatory-changes__hero-button:hover {
  background-color: #e0b800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-news-regulatory-changes__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-news-regulatory-changes__section:last-of-type {
  border-bottom: none;
}

.page-news-regulatory-changes__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-regulatory-changes__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news-regulatory-changes__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-news-regulatory-changes__overview p, 
.page-news-regulatory-changes__key-changes p, 
.page-news-regulatory-changes__impact p, 
.page-news-regulatory-changes__mcw-commitment p, 
.page-news-regulatory-changes__faq p, 
.page-news-regulatory-changes__contact-us p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0; /* Light gray for body text */
}

.page-news-regulatory-changes__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-news-regulatory-changes__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-news-regulatory-changes__list li strong {
  color: #FFD700;
}

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

.page-news-regulatory-changes__image--full-width {
  width: 100%;
}

.page-news-regulatory-changes__cta-card {
  background-color: #1a2a40; /* Slightly lighter dark blue */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin: 60px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-news-regulatory-changes__cta-title {
  font-size: 2em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 15px;
}

.page-news-regulatory-changes__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-news-regulatory-changes__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  margin: 0 10px;
}

.page-news-regulatory-changes__cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-news-regulatory-changes__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-news-regulatory-changes__faq-item {
  background-color: #1a2a40;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-regulatory-changes__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 15px;
}

.page-news-regulatory-changes__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
}

.page-news-regulatory-changes__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  margin-top: 20px;
}

.page-news-regulatory-changes__contact-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__contact-info {
  margin-top: 20px;
  font-size: 1em;
  color: #c0c0c0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-news-regulatory-changes__hero-title {
    font-size: 2.5em;
  }

  .page-news-regulatory-changes__hero-description {
    font-size: 1em;
  }

  .page-news-regulatory-changes__hero-button,
  .page-news-regulatory-changes__cta-button,
  .page-news-regulatory-changes__contact-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news-regulatory-changes__section-title {
    font-size: 2em;
  }

  .page-news-regulatory-changes__subsection-title {
    font-size: 1.5em;
  }

  .page-news-regulatory-changes__overview p,
  .page-news-regulatory-changes__key-changes p,
  .page-news-regulatory-changes__impact p,
  .page-news-regulatory-changes__mcw-commitment p,
  .page-news-regulatory-changes__faq p,
  .page-news-regulatory-changes__contact-us p,
  .page-news-regulatory-changes__list li,
  .page-news-regulatory-changes__faq-answer {
    font-size: 0.95em;
  }

  .page-news-regulatory-changes__cta-title {
    font-size: 1.6em;
  }

  .page-news-regulatory-changes__cta-button {
    margin: 10px 5px;
  }
}

@media (max-width: 480px) {
  .page-news-regulatory-changes__hero-title {
    font-size: 2em;
  }

  .page-news-regulatory-changes__section-title {
    font-size: 1.8em;
  }

  .page-news-regulatory-changes__subsection-title {
    font-size: 1.3em;
  }

  .page-news-regulatory-changes__cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-news-regulatory-changes__hero-button {
    width: calc(100% - 40px);
  }
}