/* style/industry-news-regulatory-updates.css */
.page-industry-news-regulatory-updates {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #1A2B47; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-industry-news-regulatory-updates__hero {
  position: relative;
  background-color: #1A2B47;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-industry-news-regulatory-updates__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-industry-news-regulatory-updates__hero .page-industry-news-regulatory-updates__container {
  position: relative;
  z-index: 1;
}

.page-industry-news-regulatory-updates__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-regulatory-updates__hero-subtitle {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-industry-news-regulatory-updates__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B47; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-industry-news-regulatory-updates__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-industry-news-regulatory-updates__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-industry-news-regulatory-updates__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B47;
}

.page-industry-news-regulatory-updates__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-industry-news-regulatory-updates__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-industry-news-regulatory-updates__subsection-title {
  font-size: 1.8em;
  color: #F0F0F0;
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

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

.page-industry-news-regulatory-updates__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-industry-news-regulatory-updates__grid-item {
  background-color: rgba(26, 43, 71, 0.7); /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-industry-news-regulatory-updates__grid-item p {
  font-size: 1em;
  color: #E0E0E0;
}

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

.page-industry-news-regulatory-updates__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-industry-news-regulatory-updates__list li strong {
  color: #FFD700;
}

.page-industry-news-regulatory-updates__cta {
  background-color: #1A2B47;
  text-align: center;
  padding: 100px 0;
}

.page-industry-news-regulatory-updates__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

  .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__subsection-title {
    font-size: 1.5em;
  }

  .page-industry-news-regulatory-updates__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-industry-news-regulatory-updates__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-industry-news-regulatory-updates__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-industry-news-regulatory-updates__hero-title {
    font-size: 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__grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-regulatory-updates__btn {
    width: 100%;
    max-width: 250px;
  }
  
  .page-industry-news-regulatory-updates__cta-buttons a {
    margin-bottom: 10px;
  }
}