.page-industry-news-regulatory {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-industry-news-regulatory h1, .page-industry-news-regulatory h2, .page-industry-news-regulatory h3 {
  color: #FFD700; /* Gold for titles */
  font-weight: bold;
  margin-bottom: 20px;
}

.page-industry-news-regulatory h1 {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 25px;
}

.page-industry-news-regulatory h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.page-industry-news-regulatory h3 {
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-industry-news-regulatory p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-industry-news-regulatory ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-industry-news-regulatory ul li {
  margin-bottom: 8px;
}

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

.page-industry-news-regulatory__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-industry-news-regulatory__hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFD700;
}

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

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

.page-industry-news-regulatory__section {
  padding: 60px 0;
  background-color: #2D3748; /* Slightly lighter dark for contrast */
}

.page-industry-news-regulatory__section--dark {
  background-color: #1A202C;
}

.page-industry-news-regulatory__section-title {
  margin-bottom: 40px;
}

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

.page-industry-news-regulatory__grid-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-regulatory__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-industry-news-regulatory__grid-item img {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-industry-news-regulatory__grid-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
}

.page-industry-news-regulatory__grid-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-industry-news-regulatory__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-industry-news-regulatory__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

.page-industry-news-regulatory__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news-regulatory__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-industry-news-regulatory__center-btn {
  text-align: center;
  margin-top: 40px;
}

.page-industry-news-regulatory__full-width-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-industry-news-regulatory__feature-item {
  background-color: #2D3748;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-regulatory__feature-item img {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 3px #4CAF50);
}

.page-industry-news-regulatory__feature-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 0;
}

.page-industry-news-regulatory__feature-item p {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-industry-news-regulatory__cta-text {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  font-size: 1.15em;
  color: #FFD700;
}

.page-industry-news-regulatory__impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-industry-news-regulatory__impact-card {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news-regulatory__impact-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 0 7px #FFD700);
}

.page-industry-news-regulatory__impact-card h3 {
  color: #FFD700;
  text-align: center;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-industry-news-regulatory__impact-card ul {
  list-style-type: '✅ ';
  margin-left: 20px;
  padding-left: 0;
  color: #C0C0C0;
}

.page-industry-news-regulatory__impact-card ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-industry-news-regulatory__impact-card ul li:last-child {
  margin-bottom: 0;
}

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

.page-industry-news-regulatory__trend-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-industry-news-regulatory__trend-item img {
  max-width: 90px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #4CAF50);
}

.page-industry-news-regulatory__trend-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-industry-news-regulatory__trend-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-industry-news-regulatory__cta-section {
  background: linear-gradient(90deg, #FFD700, #4CAF50);
  padding: 80px 20px;
  text-align: center;
  color: #1A202C;
}

.page-industry-news-regulatory__cta-section h2 {
  color: #1A202C;
  font-size: 2.5em;
  margin-bottom: 20px;
  border-bottom: none;
  padding-bottom: 0;
}

.page-industry-news-regulatory__cta-section p {
  color: #333;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-industry-news-regulatory__cta-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.page-industry-news-regulatory__cta-content .page-industry-news-regulatory__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #1A202C;
}

.page-industry-news-regulatory__cta-content .page-industry-news-regulatory__btn--primary:hover {
  background-color: #333;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-industry-news-regulatory h1 {
    font-size: 2.2em;
  }

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

  .page-industry-news-regulatory h3 {
    font-size: 1.4em;
  }

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

  .page-industry-news-regulatory__hero {
    padding: 60px 15px;
  }

  .page-industry-news-regulatory__hero-content p {
    font-size: 1.1em;
  }

  .page-industry-news-regulatory__section {
    padding: 40px 0;
  }

  .page-industry-news-regulatory__grid,
  .page-industry-news-regulatory__feature-list,
  .page-industry-news-regulatory__impact-grid,
  .page-industry-news-regulatory__trend-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-industry-news-regulatory__cta-section {
    padding: 50px 15px;
  }

  .page-industry-news-regulatory__cta-section h2 {
    font-size: 2em;
  }

  .page-industry-news-regulatory__cta-section p {
    font-size: 1em;
  }
}

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

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

  .page-industry-news-regulatory__hero-content p {
    font-size: 1em;
  }

  .page-industry-news-regulatory__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-industry-news-regulatory__cta-section h2 {
    font-size: 1.8em;
  }
}