.page-industry-insights-regulatory-updates {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #1A2E47; /* Main dark blue background */
}

.page-industry-insights-regulatory-updates .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-industry-insights-regulatory-updates .hero-section {
  background: linear-gradient(135deg, #1A2E47, #3A5F8A); /* Dark blue to slightly lighter blue gradient */
  color: #FFD700; /* Golden text for contrast */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-insights-regulatory-updates .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Golden for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-insights-regulatory-updates .hero-section .subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-industry-insights-regulatory-updates .content-section {
  padding: 60px 0;
  background-color: #1A2E47;
}

.page-industry-insights-regulatory-updates .content-section:nth-of-type(even) {
  background-color: #253C5A; /* Slightly lighter dark blue for alternating sections */
}

.page-industry-insights-regulatory-updates h2 {
  font-size: 2.5em;
  color: #FFD700; /* Golden for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-industry-insights-regulatory-updates h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-industry-insights-regulatory-updates h3 {
  font-size: 1.8em;
  color: #FFD700; /* Golden for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-insights-regulatory-updates p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-industry-insights-regulatory-updates ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-industry-insights-regulatory-updates ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-industry-insights-regulatory-updates ul li strong {
  color: #FFD700;
}

.page-industry-insights-regulatory-updates .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-industry-insights-regulatory-updates .primary-btn {
  background-color: #FFD700; /* Golden background */
  color: #1A2E47; /* Dark blue text */
}

.page-industry-insights-regulatory-updates .primary-btn:hover {
  background-color: #E5C100; /* Slightly darker golden on hover */
  transform: translateY(-3px);
}

.page-industry-insights-regulatory-updates .secondary-btn {
  background-color: #1A2E47; /* Dark blue background */
  color: #FFD700; /* Golden text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-industry-insights-regulatory-updates .secondary-btn:hover {
  background-color: #3A5F8A; /* Lighter dark blue on hover */
  color: #FFD700;
  transform: translateY(-3px);
}

.page-industry-insights-regulatory-updates .section-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-industry-insights-regulatory-updates .cta-section {
  background-color: #FFD700; /* Golden background for CTA */
  color: #1A2E47; /* Dark blue text for CTA */
  padding: 80px 0;
  text-align: center;
}

.page-industry-insights-regulatory-updates .cta-section h2 {
  color: #1A2E47;
}

.page-industry-insights-regulatory-updates .cta-section h2::after {
  background-color: #1A2E47;
}

.page-industry-insights-regulatory-updates .cta-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-industry-insights-regulatory-updates .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-industry-insights-regulatory-updates .cta-buttons .large-btn {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-industry-insights-regulatory-updates .cta-buttons .secondary-btn {
  background-color: #1A2E47;
  color: #FFD700;
  border-color: #1A2E47;
  margin-left: 0;
}

.page-industry-insights-regulatory-updates .cta-buttons .secondary-btn:hover {
  background-color: #3A5F8A;
  color: #FFD700;
  border-color: #3A5F8A;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-insights-regulatory-updates .hero-section h1 {
    font-size: 2.5em;
  }

  .page-industry-insights-regulatory-updates .hero-section .subtitle,
  .page-industry-insights-regulatory-updates p,
  .page-industry-insights-regulatory-updates ul li {
    font-size: 1em;
  }

  .page-industry-insights-regulatory-updates h2 {
    font-size: 2em;
  }

  .page-industry-insights-regulatory-updates h3 {
    font-size: 1.5em;
  }

  .page-industry-insights-regulatory-updates .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-insights-regulatory-updates .secondary-btn {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-industry-insights-regulatory-updates .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-industry-insights-regulatory-updates .cta-buttons .large-btn {
    width: 80%;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-industry-insights-regulatory-updates .hero-section h1 {
    font-size: 2em;
  }

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

  .page-industry-insights-regulatory-updates .container {
    padding: 0 15px;
  }
}