.page-industry-news-regulations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for text on dark background */
  background-color: #121212; /* Very dark background */
}

.page-industry-news-regulations__hero {
  background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%); /* Dark blue gradient */
  padding: 100px 20px;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-industry-news-regulations__hero-content {
  max-width: 900px;
  z-index: 2;
}

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

.page-industry-news-regulations__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) blur(3px);
  transform: scale(1.1);
}

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

.page-industry-news-regulations__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-regulations__btn {
  display: inline-block;
  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;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulations__btn--primary {
  background-color: #FFC107; /* Amber/Gold button */
  color: #1A237E; /* Deep indigo text */
}

.page-industry-news-regulations__btn--primary:hover {
  background-color: #FFD54F;
  transform: translateY(-3px);
}

.page-industry-news-regulations__btn--secondary {
  background-color: #1A237E; /* Deep indigo button */
  color: #FFC107; /* Amber/Gold text */
  border: 2px solid #FFC107;
}

.page-industry-news-regulations__btn--secondary:hover {
  background-color: #283593;
  transform: translateY(-3px);
}

.page-industry-news-regulations__btn--download {
  background-color: #00897B; /* Teal for download, good contrast */
  color: #FFFFFF;
  border: 2px solid #00897B;
}

.page-industry-news-regulations__btn--download:hover {
  background-color: #00A38D;
  transform: translateY(-3px);
}

.page-industry-news-regulations__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A1A1A; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid #333;
}

.page-industry-news-regulations__section:last-of-type {
  border-bottom: none;
}

.page-industry-news-regulations__section-title {
  font-size: 2.5em;
  color: #FFC107; /* Amber/Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-news-regulations__sub-title {
  font-size: 1.8em;
  color: #FFC107;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #1A237E;
  padding-left: 15px;
}

.page-industry-news-regulations__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-industry-news-regulations__section strong {
  color: #FFC107;
}

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

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

.page-industry-news-regulations__content-text {
  flex: 1;
}

.page-industry-news-regulations__content-image {
  flex: 1;
  min-width: 300px;
}

.page-industry-news-regulations__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-industry-news-regulations__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-industry-news-regulations__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-industry-news-regulations__list li strong {
  color: #FFC107;
}

.page-industry-news-regulations__call-to-action {
  text-align: center;
  background-color: #222222;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-industry-news-regulations__call-to-action p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFC107;
}

.page-industry-news-regulations__faq {
  background-color: #1A1A1A;
}

.page-industry-news-regulations__faq-item {
  background-color: #222222;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #1A237E;
}

.page-industry-news-regulations__faq-question {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-industry-news-regulations__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-regulations__title {
    font-size: 2.8em;
  }

  .page-industry-news-regulations__subtitle {
    font-size: 1.3em;
  }

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

  .page-industry-news-regulations__sub-title {
    font-size: 1.6em;
  }

  .page-industry-news-regulations__content-row {
    flex-direction: column;
    text-align: center;
  }

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

  .page-industry-news-regulations__content-text, .page-industry-news-regulations__content-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-industry-news-regulations__hero {
    padding: 80px 15px;
  }

  .page-industry-news-regulations__title {
    font-size: 2.2em;
  }

  .page-industry-news-regulations__subtitle {
    font-size: 1.1em;
  }

  .page-industry-news-regulations__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

  .page-industry-news-regulations__section {
    padding: 40px 15px;
  }

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

  .page-industry-news-regulations__sub-title {
    font-size: 1.4em;
  }

  .page-industry-news-regulations__section p,
  .page-industry-news-regulations__list li,
  .page-industry-news-regulations__faq-answer {
    font-size: 1em;
  }

  .page-industry-news-regulations__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-industry-news-regulations__title {
    font-size: 1.8em;
  }

  .page-industry-news-regulations__subtitle {
    font-size: 0.9em;
  }

  .page-industry-news-regulations__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-industry-news-regulations__call-to-action .page-industry-news-regulations__btn {
    width: auto;
    display: inline-block;
  }
}