.page-news-industry-updates {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg); /* Ensure consistency with shared body background */
}

.page-news-industry-updates__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

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

.page-news-industry-updates__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-news-industry-updates__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-news-industry-updates__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Use custom color for main title for prominence */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-news-industry-updates__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-industry-updates__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-news-industry-updates__btn-register,
.page-news-industry-updates__btn-login {
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-updates__btn-register {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #FFFF00;
}

.page-news-industry-updates__btn-login {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #FFFF00;
}

.page-news-industry-updates__btn-register:hover,
.page-news-industry-updates__btn-login:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-news-industry-updates__section {
  padding: 60px 20px;
  text-align: center;
}

.page-news-industry-updates__dark-section {
  background-color: #017439; /* Primary brand color for dark sections */
  color: #ffffff;
}

.page-news-industry-updates__light-bg {
  background-color: #ffffff;
  color: #333333;
}

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

.page-news-industry-updates__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section for contrast */
  position: relative;
  padding-bottom: 15px;
}

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

.page-news-industry-updates__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-news-industry-updates__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-news-industry-updates__keyword {
  font-weight: bold;
  color: #C30808;
}

.page-news-industry-updates__dark-section .page-news-industry-updates__keyword {
  color: #FFFF00; /* Yellow for keywords on dark green background */
}

.page-news-industry-updates__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-industry-updates__list {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-news-industry-updates__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__dark-section .page-news-industry-updates__list-item {
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-news-industry-updates__list-item::before {
  content: '✓';
  font-weight: bold;
  color: #FFFF00; /* Accent color for list item checkmark */
  font-size: 1.2em;
  margin-top: 2px;
}

.page-news-industry-updates__cta-buttons {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-news-industry-updates__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #C30808; /* Register button color */
  color: #FFFF00;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFFF00;
}

.page-news-industry-updates__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-news-industry-updates__link-text {
  color: #017439; /* Brand primary color for links on light background */
  text-decoration: underline;
  font-weight: bold;
}

.page-news-industry-updates__dark-section .page-news-industry-updates__link-text {
  color: #FFFF00; /* Yellow for links on dark background */
}

.page-news-industry-updates__link-text:hover {
  color: #C30808;
}

/* FAQ Section */
.page-news-industry-updates__faq-section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for FAQ */
  color: #333333;
}

.page-news-industry-updates__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

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

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-news-industry-updates__faq-question:hover {
  background-color: #e5e5e5;
}

.page-news-industry-updates__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #333333;
}

.page-news-industry-updates__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #017439;
  transition: transform 0.3s ease;
}

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

.page-news-industry-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 20px 25px;
}

.page-news-industry-updates__faq-answer .page-news-industry-updates__paragraph {
  margin: 0;
  text-align: left;
  color: #555555;
}

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

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

@media (max-width: 768px) {
  .page-news-industry-updates {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-industry-updates__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news-industry-updates__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-news-industry-updates__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-news-industry-updates__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-industry-updates__btn-register,
  .page-news-industry-updates__btn-login,
  .page-news-industry-updates__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-news-industry-updates__section,
  .page-news-industry-updates__faq-section {
    padding: 40px 15px;
  }

  .page-news-industry-updates__container {
    padding: 0;
  }

  .page-news-industry-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news-industry-updates__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-news-industry-updates__paragraph {
    font-size: 1em;
    text-align: left;
  }

  .page-news-industry-updates__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-news-industry-updates__list-item {
    padding: 10px 15px;
    font-size: 0.95em;
  }

  .page-news-industry-updates__faq-question {
    padding: 15px 20px;
  }

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

  .page-news-industry-updates__faq-answer {
    padding: 15px 20px;
  }
}

/* Ensure no image filter is applied */
.page-news-industry-updates img {
  filter: none !important;
}