/* style/news-regulatory-changes.css */

.page-news-regulatory-changes {
  font-family: 'Arial', sans-serif;
  color: #333333;
  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-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-regulatory-changes__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gradient]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-news-regulatory-changes__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

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

.page-news-regulatory-changes__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-news-regulatory-changes__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-news-regulatory-changes__section--dark .page-news-regulatory-changes__section-title {
  color: #FFCC00;
}

.page-news-regulatory-changes__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-news-regulatory-changes__section--dark .page-news-regulatory-changes__sub-title {
  color: #f0f0f0;
  border-color: #003366;
}

.page-news-regulatory-changes__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-news-regulatory-changes__section--dark .page-news-regulatory-changes__text-block {
  color: #e0e0e0;
}

.page-news-regulatory-changes__content-section {
  padding: 60px 0;
}

.page-news-regulatory-changes__section--light {
  background-color: #f8f8f8;
}

.page-news-regulatory-changes__section--dark {
  background-color: #003366;
  color: #ffffff;
}

.page-news-regulatory-changes__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444444;
}

.page-news-regulatory-changes__section--dark .page-news-regulatory-changes__list {
  color: #e0e0e0;
}

.page-news-regulatory-changes__list li {
  margin-bottom: 10px;
}

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

.page-news-regulatory-changes__image--inline {
  width: 70%;
  max-width: 700px;
  margin: 30px auto 40px auto;
}

.page-news-regulatory-changes__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-news-regulatory-changes__button--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-news-regulatory-changes__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.page-news-regulatory-changes__button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
}

.page-news-regulatory-changes__button--secondary:hover {
  background-color: #004488;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.6);
}

.page-news-regulatory-changes__cta-section {
  background-color: #FFCC00;
  padding: 80px 0;
  text-align: center;
  color: #003366;
}

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

.page-news-regulatory-changes__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .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__sub-title {
    font-size: 1.5em;
  }
  .page-news-regulatory-changes__text-block, .page-news-regulatory-changes__list {
    font-size: 1em;
  }
  .page-news-regulatory-changes__image--inline {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .page-news-regulatory-changes__hero-section {
    padding: 80px 0;
  }
  .page-news-regulatory-changes__hero-title {
    font-size: 2em;
  }
  .page-news-regulatory-changes__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__sub-title {
    font-size: 1.3em;
  }
  .page-news-regulatory-changes__button {
    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: 576px) {
  .page-news-regulatory-changes__hero-section {
    padding: 60px 0;
  }
  .page-news-regulatory-changes__hero-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__hero-subtitle {
    font-size: 1em;
  }
  .page-news-regulatory-changes__section-title {
    font-size: 1.6em;
  }
  .page-news-regulatory-changes__sub-title {
    font-size: 1.2em;
  }
  .page-news-regulatory-changes__image--inline {
    width: 100%;
  }
  .page-news-regulatory-changes__cta-title {
    font-size: 1.8em;
  }
  .page-news-regulatory-changes__cta-text {
    font-size: 1em;
  }
}