.page-news-industry-updates {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: #FFFFFF; /* Ensures a consistent light background */
}

.page-news-industry-updates__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #017439, #0a9952);
  color: #ffffff;
}

.page-news-industry-updates__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-news-industry-updates__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-news-industry-updates__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-news-industry-updates__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-news-industry-updates__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-industry-updates__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-news-industry-updates__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-industry-updates__cta-button:hover {
  background: #e02020;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-news-industry-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.page-news-industry-updates__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #017439;
}

.page-news-industry-updates__section-title--white {
  color: #FFFFFF;
}

.page-news-industry-updates__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-news-industry-updates__highlight {
  color: #017439;
  font-weight: bold;
}

.page-news-industry-updates__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

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

.page-news-industry-updates__content-block--white-text {
  color: #ffffff;
}

.page-news-industry-updates__content-block--white-text .page-news-industry-updates__highlight {
  color: #FFFF00;
}

.page-news-industry-updates__grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-news-industry-updates__grid-2-columns--reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl; /* Used to visually reverse the grid order */
}

.page-news-industry-updates__grid-2-columns--reverse > *:nth-child(even) {
  direction: ltr; /* Reset direction for content inside grid item */
}

.page-news-industry-updates__grid-2-columns--reverse > *:nth-child(odd) {
  direction: ltr; /* Reset direction for content inside grid item */
}

.page-news-industry-updates__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: #FFFFFF;
  color: #017439;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid #017439;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-industry-updates__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ styles */
.page-news-industry-updates__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news-industry-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #333333;
  text-align: left;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-news-industry-updates__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-news-industry-updates__faq-question:active {
  background: #eeeeee;
}

.page-news-industry-updates__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}