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

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

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

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

.page-industry-news-policy-updates__hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-industry-news-policy-updates__section:nth-of-type(even) {
  background-color: #2A3342;
}

.page-industry-news-policy-updates__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news-policy-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-policy-updates__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

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

.page-industry-news-policy-updates__grid-item {
  background-color: #2A3342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-industry-news-policy-updates__grid-item:hover {
  transform: translateY(-5px);
  background-color: #3A4252;
}

.page-industry-news-policy-updates__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-industry-news-policy-updates__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-industry-news-policy-updates__content-text {
  flex: 1;
  min-width: 300px;
}

.page-industry-news-policy-updates__content-text p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-industry-news-policy-updates__content-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-industry-news-policy-updates__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-policy-updates__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-industry-news-policy-updates__list li {
  background-color: #2A3342;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-policy-updates__list li p {
  color: #E0E0E0;
}

.page-industry-news-policy-updates__faq-item {
  background-color: #2A3342;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-policy-updates__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3A4252;
  transition: background-color 0.3s ease;
}

.page-industry-news-policy-updates__faq-question:hover {
  background-color: #4A5262;
}

.page-industry-news-policy-updates__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-industry-news-policy-updates__faq-item.active .page-industry-news-policy-updates__faq-question::after {
  transform: rotate(45deg);
}

.page-industry-news-policy-updates__faq-answer {
  padding: 0 20px 20px;
  color: #E0E0E0;
  display: none;
}

.page-industry-news-policy-updates__faq-item.active .page-industry-news-policy-updates__faq-answer {
  display: block;
}

.page-industry-news-policy-updates__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-industry-news-policy-updates__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-industry-news-policy-updates__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-industry-news-policy-updates__link:hover {
  color: #E0B500;
}

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

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

  .page-industry-news-policy-updates__subsection-title {
    font-size: 1.3em;
  }

  .page-industry-news-policy-updates__grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-policy-updates__content-row {
    flex-direction: column;
  }

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

  .page-industry-news-policy-updates__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

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

  .page-industry-news-policy-updates__hero-description {
    font-size: 1em;
  }

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

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

  .page-industry-news-policy-updates__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-industry-news-policy-updates__cta-button--small, .page-industry-news-policy-updates__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}