.page-industry-news-latest-regulations {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A2239; /* Primary dark blue background */
}

.page-industry-news-latest-regulations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-industry-news-latest-regulations__hero {
  background: linear-gradient(135deg, #0A2239 0%, #2a4a6d 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-industry-news-latest-regulations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-industry-news-latest-regulations__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-latest-regulations__subtitle {
  font-size: 1.3em;
  color: #B0C4DE; /* Lighter blue for subtitles */
  margin-bottom: 30px;
}

.page-industry-news-latest-regulations__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.page-industry-news-latest-regulations__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-industry-news-latest-regulations__section {
  padding: 60px 0;
}

.page-industry-news-latest-regulations__section:nth-of-type(even) {
  background-color: #0F2D47; /* Slightly lighter dark blue for alternating sections */
}

.page-industry-news-latest-regulations__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-industry-news-latest-regulations__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-industry-news-latest-regulations__text-content p,
.page-industry-news-latest-regulations__text-content li {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-industry-news-latest-regulations__text-content ul,
.page-industry-news-latest-regulations__text-content ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-industry-news-latest-regulations__text-content ol {
  list-style-type: decimal;
}

.page-industry-news-latest-regulations__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-industry-news-latest-regulations__content-row--reverse {
  flex-direction: row-reverse;
}

.page-industry-news-latest-regulations__text-content {
  flex: 1;
}

.page-industry-news-latest-regulations__image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-latest-regulations__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.page-industry-news-latest-regulations__image:hover {
  transform: scale(1.05);
}

.page-industry-news-latest-regulations__cta-bottom {
  background-color: #1A3E5C; /* Darker blue for CTA section */
  padding: 80px 0;
  text-align: center;
}

.page-industry-news-latest-regulations__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-industry-news-latest-regulations__cta-text {
  font-size: 1.2em;
  color: #B0C4DE;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-latest-regulations__cta-button,
.page-industry-news-latest-regulations__cta-button--secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.page-industry-news-latest-regulations__cta-button {
  background-color: #FFD700; /* Gold for primary CTA */
  color: #0A2239; /* Dark blue text on gold */
}

.page-industry-news-latest-regulations__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-industry-news-latest-regulations__cta-button--secondary {
  background-color: #0A2239; /* Dark blue for secondary CTA */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-industry-news-latest-regulations__cta-button--secondary:hover {
  background-color: #1A3E5C;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-latest-regulations__title {
    font-size: 2.5em;
  }
  .page-industry-news-latest-regulations__section-title {
    font-size: 2em;
  }
  .page-industry-news-latest-regulations__sub-title {
    font-size: 1.5em;
  }
  .page-industry-news-latest-regulations__content-row {
    flex-direction: column;
    gap: 30px;
  }
  .page-industry-news-latest-regulations__content-row--reverse {
    flex-direction: column;
  }
  .page-industry-news-latest-regulations__image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-industry-news-latest-regulations__hero {
    padding: 80px 0 50px;
  }
  .page-industry-news-latest-regulations__title {
    font-size: 2em;
  }
  .page-industry-news-latest-regulations__subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-latest-regulations__section {
    padding: 40px 0;
  }
  .page-industry-news-latest-regulations__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-latest-regulations__cta-title {
    font-size: 2em;
  }
  .page-industry-news-latest-regulations__cta-text {
    font-size: 1em;
  }
  .page-industry-news-latest-regulations__cta-button,
  .page-industry-news-latest-regulations__cta-button--secondary {
    padding: 12px 25px;
    font-size: 1em;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-latest-regulations__hero {
    padding: 60px 0 40px;
  }
  .page-industry-news-latest-regulations__title {
    font-size: 1.6em;
  }
  .page-industry-news-latest-regulations__subtitle {
    font-size: 0.9em;
  }
  .page-industry-news-latest-regulations__section-title {
    font-size: 1.5em;
  }
  .page-industry-news-latest-regulations__sub-title {
    font-size: 1.3em;
  }
  .page-industry-news-latest-regulations__cta-title {
    font-size: 1.6em;
  }
  .page-industry-news-latest-regulations__cta-button,
  .page-industry-news-latest-regulations__cta-button--secondary {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}