/* style/industry-news-trends-regulatory-changes.css */
:root {
  --page-industry-news-trends-regulatory-changes-primary-color: #0A192F;
  --page-industry-news-trends-regulatory-changes-secondary-color: #FFD700;
  --page-industry-news-trends-regulatory-changes-text-light: #F8F8F8; /* Light text for dark backgrounds */
  --page-industry-news-trends-regulatory-changes-text-dark: #1A1A1A; /* Dark text for light backgrounds */
  --page-industry-news-trends-regulatory-changes-accent-color: #FFD700; /* Gold for highlights */
  --page-industry-news-trends-regulatory-changes-bg-dark: #0A192F;
  --page-industry-news-trends-regulatory-changes-bg-light: #E0E0E0;
}

.page-industry-news-trends-regulatory-changes {
  font-family: 'Arial', sans-serif;
  color: var(--page-industry-news-trends-regulatory-changes-text-dark); /* Default text color for light sections */
  line-height: 1.6;
}

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

.page-industry-news-trends-regulatory-changes__hero-section {
  background-color: var(--page-industry-news-trends-regulatory-changes-bg-dark);
  color: var(--page-industry-news-trends-regulatory-changes-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-trends-regulatory-changes__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(255, 215, 0, 0.2));
  z-index: 0;
}

.page-industry-news-trends-regulatory-changes__hero-section .page-industry-news-trends-regulatory-changes__container {
  position: relative;
  z-index: 1;
}

.page-industry-news-trends-regulatory-changes__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-trends-regulatory-changes__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-trends-regulatory-changes__cta-button {
  display: inline-block;
  background-color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
  color: var(--page-industry-news-trends-regulatory-changes-bg-dark);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-trends-regulatory-changes__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

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

.page-industry-news-trends-regulatory-changes__section-title {
  font-size: 2.5em;
  color: var(--page-industry-news-trends-regulatory-changes-primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-news-trends-regulatory-changes__subsection-title {
  font-size: 1.8em;
  color: var(--page-industry-news-trends-regulatory-changes-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--page-industry-news-trends-regulatory-changes-secondary-color);
  padding-left: 15px;
}

.page-industry-news-trends-regulatory-changes p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--page-industry-news-trends-regulatory-changes-text-dark);
}

.page-industry-news-trends-regulatory-changes__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-industry-news-trends-regulatory-changes__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--page-industry-news-trends-regulatory-changes-text-dark);
}

.page-industry-news-trends-regulatory-changes__keyword {
  color: var(--page-industry-news-trends-regulatory-changes-primary-color);
  font-weight: bold;
}

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

.page-industry-news-trends-regulatory-changes__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-industry-news-trends-regulatory-changes__image:hover {
  transform: scale(1.02);
}

.page-industry-news-trends-regulatory-changes__image-caption {
  font-style: italic;
  color: #666;
  margin-top: 10px;
  font-size: 0.95em;
}

.page-industry-news-trends-regulatory-changes__cta-banner {
  background-color: var(--page-industry-news-trends-regulatory-changes-bg-dark);
  color: var(--page-industry-news-trends-regulatory-changes-text-light);
  padding: 60px 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-industry-news-trends-regulatory-changes__cta-title {
  font-size: 2.8em;
  color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
  margin-bottom: 20px;
}

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

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

.page-industry-news-trends-regulatory-changes__cta-button--primary {
  background-color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
  color: var(--page-industry-news-trends-regulatory-changes-bg-dark);
}

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

.page-industry-news-trends-regulatory-changes__cta-button--secondary {
  background-color: transparent;
  border: 2px solid var(--page-industry-news-trends-regulatory-changes-secondary-color);
  color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
  box-shadow: none;
}

.page-industry-news-trends-regulatory-changes__cta-button--secondary:hover {
  background-color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
  color: var(--page-industry-news-trends-regulatory-changes-bg-dark);
  transform: translateY(-3px);
}

.page-industry-news-trends-regulatory-changes a {
  color: var(--page-industry-news-trends-regulatory-changes-primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news-trends-regulatory-changes a:hover {
  color: var(--page-industry-news-trends-regulatory-changes-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-trends-regulatory-changes__main-title {
    font-size: 2.8em;
  }
  .page-industry-news-trends-regulatory-changes__hero-description,
  .page-industry-news-trends-regulatory-changes__cta-text {
    font-size: 1.15em;
  }
  .page-industry-news-trends-regulatory-changes__section-title {
    font-size: 2em;
  }
  .page-industry-news-trends-regulatory-changes__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-industry-news-trends-regulatory-changes__hero-section {
    padding: 80px 0;
  }
  .page-industry-news-trends-regulatory-changes__main-title {
    font-size: 2.2em;
  }
  .page-industry-news-trends-regulatory-changes__hero-description,
  .page-industry-news-trends-regulatory-changes p,
  .page-industry-news-trends-regulatory-changes__list li {
    font-size: 1em;
  }
  .page-industry-news-trends-regulatory-changes__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-trends-regulatory-changes__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends-regulatory-changes__subsection-title {
    font-size: 1.4em;
  }
  .page-industry-news-trends-regulatory-changes__cta-banner {
    padding: 40px 20px;
  }
  .page-industry-news-trends-regulatory-changes__cta-title {
    font-size: 2.2em;
  }
  .page-industry-news-trends-regulatory-changes__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-trends-regulatory-changes__main-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends-regulatory-changes__section-title {
    font-size: 1.6em;
  }
  .page-industry-news-trends-regulatory-changes__subsection-title {
    font-size: 1.2em;
  }
  .page-industry-news-trends-regulatory-changes__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news-trends-regulatory-changes__cta-button {
    width: 100%;
  }
}