.page-news-industry-updates {
  color: #ffffff; /* Text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Inherited from body for consistency */
}

.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); /* Ensure content is not covered by fixed header */
}

.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); /* Dark overlay for text readability */
  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__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-news-industry-updates__hero-button {
  display: inline-block;
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
  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;
  border: none;
  cursor: pointer;
}

.page-news-industry-updates__hero-button:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-news-industry-updates__section {
  padding: 60px 0;
  background-color: #1a1a2e; /* Dark background for sections */
  color: #ffffff;
}

.page-news-industry-updates__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  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: #26A9E0;
  border-radius: 2px;
}

.page-news-industry-updates__sub-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

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

.page-news-industry-updates__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

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

.page-news-industry-updates__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-news-industry-updates__card:hover {
  transform: translateY(-5px);
}

.page-news-industry-updates__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-updates__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

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

.page-news-industry-updates__content-text {
  flex: 1;
}

.page-news-industry-updates__content-image {
  flex: 1;
  text-align: center;
}

.page-news-industry-updates__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

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

.page-news-industry-updates__grid-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news-industry-updates__grid-item:hover {
  transform: translateY(-5px);
}

.page-news-industry-updates__grid-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-updates__grid-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-industry-updates__grid-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.page-news-industry-updates__grid-button:hover {
  background-color: #c96806;
}

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

.page-news-industry-updates__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-news-industry-updates__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-updates__feature-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-news-industry-updates__feature-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-industry-updates__feature-button:hover {
  background-color: #1e87b7;
}

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

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

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly lighter background for question */
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-news-industry-updates__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-news-industry-updates__faq-q-text {
  flex-grow: 1;
}

.page-news-industry-updates__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-toggle {
  transform: rotate(0deg); /* '−' sign does not need rotation */
}

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

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

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

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

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

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

  .page-news-industry-updates__content-row {
    flex-direction: column;
    text-align: center;
  }

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

  .page-news-industry-updates__content-text,
  .page-news-industry-updates__content-image {
    flex: none;
    width: 100%;
  }

  .page-news-industry-updates__grid-item,
  .page-news-industry-updates__card {
    padding: 25px;
  }

  .page-news-industry-updates__grid-button {
    align-self: center;
  }
}

@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; /* Mobile specific header offset */
  }

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

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

  .page-news-industry-updates__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

  .page-news-industry-updates__paragraph {
    font-size: 0.95em;
  }

  .page-news-industry-updates__card-grid,
  .page-news-industry-updates__grid,
  .page-news-industry-updates__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news-industry-updates__card,
  .page-news-industry-updates__grid-item,
  .page-news-industry-updates__feature-item {
    padding: 20px;
  }

  .page-news-industry-updates__card-title,
  .page-news-industry-updates__grid-title,
  .page-news-industry-updates__feature-title {
    font-size: 1.3em;
  }

  .page-news-industry-updates__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Ensure all image containers are responsive */
  .page-news-industry-updates__container,
  .page-news-industry-updates__content-row,
  .page-news-industry-updates__content-image,
  .page-news-industry-updates__card-grid,
  .page-news-industry-updates__grid,
  .page-news-industry-updates__feature-list,
  .page-news-industry-updates__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-news-industry-updates__grid-button,
  .page-news-industry-updates__feature-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-updates__cta-buttons {
    display: flex;
    flex-direction: column; /* Mobile vertical stacking */
    gap: 10px;
  }

  .page-news-industry-updates__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

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

/* Color Contrast Fixes (if needed, applied generally) */
.page-news-industry-updates__dark-bg {
  color: #ffffff;
  background: #26A9E0;
}

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