.page-industry-news-regulatory-updates {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #0A1A3A; /* Main dark blue background */
  line-height: 1.6;
  padding-bottom: 50px;
}

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

.page-industry-news-regulatory-updates__hero-section {
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-regulatory-updates__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-industry-news-regulatory-updates__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-industry-news-regulatory-updates__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0;
}

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

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

.page-industry-news-regulatory-updates__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1A3A; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-industry-news-regulatory-updates__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-industry-news-regulatory-updates__cta-button--center {
  display: block;
  margin: 40px auto;
  max-width: 300px;
}

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

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

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

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

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

.page-industry-news-regulatory-updates__text-block strong {
  color: #FFD700;
}

.page-industry-news-regulatory-updates__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-industry-news-regulatory-updates__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-industry-news-regulatory-updates__image-text-layout img {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory-updates__text-wrapper {
  flex: 1;
  max-width: 50%;
}

.page-industry-news-regulatory-updates__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-industry-news-regulatory-updates__list li {
  background-color: #1A3A6A; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #F0F0F0;
  border-left: 5px solid #FFD700;
}

.page-industry-news-regulatory-updates__list--icon li {
  display: flex;
  align-items: flex-start;
  background-color: transparent;
  border-left: none;
  padding: 0;
  margin-bottom: 15px;
}

.page-industry-news-regulatory-updates__list-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-industry-news-regulatory-updates__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-industry-news-regulatory-updates__benefit-list li {
  background-color: #1A3A6A;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #FFD700;
  transition: transform 0.3s ease;
}

.page-industry-news-regulatory-updates__benefit-list li:hover {
  transform: translateY(-5px);
}

.page-industry-news-regulatory-updates__benefit-list li::before {
  content: '★'; /* Star icon */
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 10px;
  vertical-align: middle;
}

.page-industry-news-regulatory-updates__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-industry-news-regulatory-updates__tip-card {
  background-color: #1A3A6A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #FFD700;
  transition: transform 0.3s ease;
}

.page-industry-news-regulatory-updates__tip-card:hover {
  transform: translateY(-5px);
}

.page-industry-news-regulatory-updates__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-industry-news-regulatory-updates__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-industry-news-regulatory-updates__tip-card p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-industry-news-regulatory-updates__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .page-industry-news-regulatory-updates__hero-title {
    font-size: 2.8em;
  }

  .page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-industry-news-regulatory-updates__image-text-layout {
    flex-direction: column;
    gap: 30px;
  }

  .page-industry-news-regulatory-updates__image-text-layout--reverse {
    flex-direction: column;
  }

  .page-industry-news-regulatory-updates__image-text-layout img,
  .page-industry-news-regulatory-updates__text-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-industry-news-regulatory-updates__hero-section {
    padding: 80px 0;
  }

  .page-industry-news-regulatory-updates__hero-title {
    font-size: 2.2em;
  }

  .page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 1em;
  }

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

  .page-industry-news-regulatory-updates__sub-section-title {
    font-size: 1.5em;
  }

  .page-industry-news-regulatory-updates__text-block,
  .page-industry-news-regulatory-updates__list li,
  .page-industry-news-regulatory-updates__benefit-list li,
  .page-industry-news-regulatory-updates__tip-card p {
    font-size: 0.95em;
  }

  .page-industry-news-regulatory-updates__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news-regulatory-updates__benefit-list,
  .page-industry-news-regulatory-updates__tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-industry-news-regulatory-updates__hero-section {
    padding: 60px 0;
  }

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

  .page-industry-news-regulatory-updates__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-industry-news-regulatory-updates__cta-button {
    width: 100%;
    max-width: unset;
  }

  .page-industry-news-regulatory-updates__tip-card,
  .page-industry-news-regulatory-updates__benefit-list li {
    padding: 20px;
  }
}