.page-news-industry-updates-2024 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: transparent; /* Inherit from body, or transparent for sections */
}

.page-news-industry-updates-2024__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-news-industry-updates-2024__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 116, 57, 0.7); /* Overlay for readability */
  z-index: 1;
}

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

.page-news-industry-updates-2024__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-news-industry-updates-2024__hero-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-news-industry-updates-2024__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-news-industry-updates-2024__btn-primary,
.page-news-industry-updates-2024__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button responsive */
  word-wrap: break-word; /* Button responsive */
}

.page-news-industry-updates-2024__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom color for register/login font */
  border: 2px solid #C30808;
}

.page-news-industry-updates-2024__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-news-industry-updates-2024__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-news-industry-updates-2024__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-news-industry-updates-2024__section {
  padding: 60px 20px;
}

.page-news-industry-updates-2024__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-industry-updates-2024__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-news-industry-updates-2024__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-news-industry-updates-2024__sub-title {
  font-size: 1.6em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news-industry-updates-2024__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for dark body background */
}

.page-news-industry-updates-2024__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-news-industry-updates-2024__dark-bg .page-news-industry-updates-2024__section-title,
.page-news-industry-updates-2024__dark-bg .page-news-industry-updates-2024__sub-title {
  color: #FFFFFF;
}

.page-news-industry-updates-2024__dark-bg .page-news-industry-updates-2024__section-title::after {
  background-color: #FFFFFF;
}

.page-news-industry-updates-2024__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-news-industry-updates-2024__keyword {
  font-weight: bold;
  color: #FFFF00; /* Highlight keywords */
}

.page-news-industry-updates-2024__cta-area {
  margin-top: 50px;
  text-align: center;
}

.page-news-industry-updates-2024__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%; /* Button container responsive */
  max-width: 100%; /* Button container responsive */
  overflow: hidden; /* Button container responsive */
  box-sizing: border-box; /* Button container responsive */
}

.page-news-industry-updates-2024__faq-section {
  background-color: #017439;
  color: #ffffff;
}

.page-news-industry-updates-2024__faq-list {
  margin-top: 40px;
}

.page-news-industry-updates-2024__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-industry-updates-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-news-industry-updates-2024__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-news-industry-updates-2024__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-news-industry-updates-2024__faq-qtext {
  flex-grow: 1;
}

.page-news-industry-updates-2024__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  width: 24px;
  text-align: center;
}

.page-news-industry-updates-2024__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-news-industry-updates-2024__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Ensure links within content are visible */
.page-news-industry-updates-2024 a {
  color: #FFFF00; /* Highlight links */
  text-decoration: underline;
}

.page-news-industry-updates-2024 a:hover {
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-updates-2024__hero-title {
    font-size: 2.5em;
  }
  .page-news-industry-updates-2024__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates-2024 {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news-industry-updates-2024__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry-updates-2024__hero-title {
    font-size: 2em;
  }
  .page-news-industry-updates-2024__hero-description {
    font-size: 1em;
  }
  .page-news-industry-updates-2024__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-updates-2024__btn-primary,
  .page-news-industry-updates-2024__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px;
  }
  .page-news-industry-updates-2024__section {
    padding: 40px 15px;
  }
  .page-news-industry-updates-2024__content-area {
    padding: 0 15px;
  }
  .page-news-industry-updates-2024__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-industry-updates-2024__sub-title {
    font-size: 1.4em;
  }
  .page-news-industry-updates-2024__paragraph {
    font-size: 1em;
  }
  .page-news-industry-updates-2024__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-news-industry-updates-2024__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-updates-2024__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-news-industry-updates-2024__faq-answer {
    padding: 0 20px 15px 20px;
  }
}