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

.page-news-industry-updates__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  overflow: hidden;
  background-color: #26A9E0; /* Use brand color for hero background */
}

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

.page-news-industry-updates__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin: 20px;
}

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

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

.page-news-industry-updates__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text for light background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 3;
}

.page-news-industry-updates__container {
  margin-bottom: 40px;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.page-news-industry-updates__container:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-news-industry-updates__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

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

.page-news-industry-updates__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-news-industry-updates__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-news-industry-updates__image--left,
.page-news-industry-updates__image--right {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-news-industry-updates__image--left:hover,
.page-news-industry-updates__image--right:hover {
  transform: translateY(-5px);
}

.page-news-industry-updates__text-content {
  flex: 1;
}

.page-news-industry-updates__faq-list {
  margin-top: 30px;
}

.page-news-industry-updates__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-news-industry-updates__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

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

.page-news-industry-updates__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-news-industry-updates__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.1em;
  color: #555555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-news-industry-updates__faq-item[open] .page-news-industry-updates__faq-answer {
  max-height: 500px; /* Sufficient height for answer content */
  padding-top: 15px;
}

/* Ensure details summary toggle works without JS */
.page-news-industry-updates__faq-item[open] .page-news-industry-updates__faq-toggle {
  content: '−';
}

.page-news-industry-updates__cta-section {
  text-align: center;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-news-industry-updates__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-updates__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
  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, color 0.3s ease, border-color 0.3s ease;
  margin: 0 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-updates__btn-primary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

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

.page-news-industry-updates__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #FFFFFF;
}

.page-news-industry-updates__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

/* Global image responsiveness */
.page-news-industry-updates img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure images fill their space */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .page-news-industry-updates__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-updates__hero-description {
    font-size: 1.1em;
  }
  .page-news-industry-updates__section-title {
    font-size: 2em;
  }
  .page-news-industry-updates__image-text-block {
    flex-direction: column;
    gap: 30px;
  }
  .page-news-industry-updates__image-text-block--reverse {
    flex-direction: column;
  }
  .page-news-industry-updates__image--left,
  .page-news-industry-updates__image--right {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news-industry-updates__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }
  .page-news-industry-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-industry-updates__hero-description {
    font-size: 1em;
  }
  .page-news-industry-updates__content-area {
    padding: 30px 15px;
    margin-top: -50px; /* Adjust overlap */
  }
  .page-news-industry-updates__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__paragraph {
    font-size: 1em;
  }
  .page-news-industry-updates__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-news-industry-updates__faq-answer {
    font-size: 1em;
    padding: 0 20px 15px;
  }
  .page-news-industry-updates__cta-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__cta-description {
    font-size: 1em;
  }
  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary {
    display: block;
    margin: 10px auto;
    width: calc(100% - 30px); /* Account for padding */
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Force responsive for all images */
  .page-news-industry-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Force responsive for all image containers */
  .page-news-industry-updates__hero-section,
  .page-news-industry-updates__content-area,
  .page-news-industry-updates__container,
  .page-news-industry-updates__image-text-block,
  .page-news-industry-updates__text-content,
  .page-news-industry-updates__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-news-industry-updates__container,
  .page-news-industry-updates__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-updates__hero-content {
    margin: 0;
    padding: 20px 15px;
  }
  .page-news-industry-updates__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}