.page-news-industry-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: #1a1a1a; /* Inherited from body, but explicitly set for safety */
}

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

.page-news-industry-trends__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: #017439; /* Primary brand color for hero */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-news-industry-trends__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Use specified font color for prominent titles/buttons if applicable */
}

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

.page-news-industry-trends__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-news-industry-trends__btn-primary:hover {
  background-color: #a00606;
}

.page-news-industry-trends__introduction-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #017439; /* Primary brand color for section titles */
}

.page-news-industry-trends__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  color: #f0f0f0;
}

.page-news-industry-trends__intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-news-industry-trends__intro-content p {
  margin-bottom: 15px;
  color: #ffffff;
}

.page-news-industry-trends__intro-image-wrapper {
  text-align: center;
}

.page-news-industry-trends__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__latest-news-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-news-industry-trends__news-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-news-industry-trends__news-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news-industry-trends__news-content {
  padding: 20px;
}

.page-news-industry-trends__news-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #017439; /* Primary brand color */
}

.page-news-industry-trends__news-title a {
  color: #017439;
  text-decoration: none;
}

.page-news-industry-trends__news-title a:hover {
  text-decoration: underline;
}

.page-news-industry-trends__news-excerpt {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
}

.page-news-industry-trends__read-more {
  display: inline-block;
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  font-weight: bold;
}

.page-news-industry-trends__read-more:hover {
  text-decoration: underline;
}

.page-news-industry-trends__deep-dive-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-news-industry-trends__sub-section-title {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #017439; /* Primary brand color */
}

.page-news-industry-trends__deep-dive-content p {
  margin-bottom: 20px;
  color: #ffffff;
}

.page-news-industry-trends__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #017439; /* Primary brand color */
  color: #ffffff;
}

.page-news-industry-trends__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-news-industry-trends__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-news-industry-trends__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background-color: #3a3a3a;
  transition: background-color 0.3s ease;
}

.page-news-industry-trends__faq-question:hover {
  background-color: #4a4a4a;
}

.page-news-industry-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #017439;
}

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

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

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-question {
  background-color: #4a4a4a;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-toggle {
  color: #FFFF00;
}

.page-news-industry-trends__faq-answer p {
  margin-bottom: 10px;
}

.page-news-industry-trends__faq-answer a {
  color: #FFFF00;
  text-decoration: none;
}

.page-news-industry-trends__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.5em;
  }

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

  .page-news-industry-trends__intro-grid {
    grid-template-columns: 1fr;
  }

  .page-news-industry-trends__intro-image-wrapper {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

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

  .page-news-industry-trends__container {
    padding: 0 15px;
  }

  .page-news-industry-trends__hero-section,
  .page-news-industry-trends__introduction-section,
  .page-news-industry-trends__latest-news-section,
  .page-news-industry-trends__deep-dive-section,
  .page-news-industry-trends__cta-section,
  .page-news-industry-trends__faq-section {
    padding: 40px 0;
  }

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

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

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

  .page-news-industry-trends__section-subtitle {
    margin-bottom: 30px;
  }

  .page-news-industry-trends__news-card {
    margin-bottom: 20px;
  }

  .page-news-industry-trends__news-title {
    font-size: 1.2em;
  }

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

  /* Mobile responsive image adaptation */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .page-news-industry-trends__intro-image-wrapper,
  .page-news-industry-trends__news-card,
  .page-news-industry-trends__deep-dive-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Mobile responsive button adaptation */
  .page-news-industry-trends__cta-button,
  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary,
  .page-news-industry-trends a[class*="button"],
  .page-news-industry-trends a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some spacing for stacked buttons */
  }

  .page-news-industry-trends__cta-buttons,
  .page-news-industry-trends__button-group,
  .page-news-industry-trends__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

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