/* style/news-regulatory-changes.css */
.page-news-regulatory-changes {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-news-regulatory-changes__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-regulatory-changes__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  transform: rotate(20deg);
  z-index: 0;
}

.page-news-regulatory-changes__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-regulatory-changes__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.page-news-regulatory-changes__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-news-regulatory-changes__article {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-news-regulatory-changes__section-title {
  font-size: 2.2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 15px;
  font-weight: bold;
}

.page-news-regulatory-changes__section-title:first-of-type {
  margin-top: 0;
}

.page-news-regulatory-changes__article p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #444;
}

.page-news-regulatory-changes__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #555;
}

.page-news-regulatory-changes__list li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

.page-news-regulatory-changes__image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-regulatory-changes__cta-box {
  background-color: #003366;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-news-regulatory-changes__cta-title {
  font-size: 2.5em;
  color: #FFCC00;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-regulatory-changes__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-news-regulatory-changes__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-news-regulatory-changes__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-news-regulatory-changes__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-regulatory-changes__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-news-regulatory-changes__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-regulatory-changes__hero-title {
    font-size: 2.8em;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-regulatory-changes__hero {
    padding: 60px 0;
  }
  .page-news-regulatory-changes__hero-title {
    font-size: 2.2em;
  }
  .page-news-regulatory-changes__hero-description {
    font-size: 1em;
  }
  .page-news-regulatory-changes__article {
    padding: 25px;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 1.6em;
  }
  .page-news-regulatory-changes__article p, .page-news-regulatory-changes__list li {
    font-size: 0.95em;
  }
  .page-news-regulatory-changes__cta-box {
    padding: 30px;
  }
  .page-news-regulatory-changes__cta-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-news-regulatory-changes__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news-regulatory-changes__hero-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 1.4em;
  }
  .page-news-regulatory-changes__cta-title {
    font-size: 1.5em;
  }
  .page-news-regulatory-changes__btn {
    font-size: 0.9em;
  }
  .page-news-regulatory-changes__container {
    padding: 0 15px;
  }
}