.page-news-industry-trends {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF; /* Default body background */
}

.page-news-industry-trends__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
}

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

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

.page-news-industry-trends__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);
  min-height: 400px;
  background: linear-gradient(135deg, #017439, #005f2e);
  color: #FFFFFF;
}

.page-news-industry-trends__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-news-industry-trends__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFF00; /* Yellow for prominence */
}

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

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Red for action */
  color: #FFFF00; /* Yellow for text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news-industry-trends__cta-button:hover {
  background: #a10606;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__cta-button--primary {
  background: #C30808;
  color: #FFFF00;
}

.page-news-industry-trends__cta-button--secondary {
  background: #017439;
  color: #FFFFFF;
  margin-left: 15px;
}

.page-news-industry-trends__cta-button--secondary:hover {
  background: #005f2e;
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  color: inherit;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-trends__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit;
}

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

@media (min-width: 769px) {
  .page-news-industry-trends__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-news-industry-trends__content-grid--reverse {
    grid-template-areas: "image text";
  }
  .page-news-industry-trends__content-grid--reverse .page-news-industry-trends__text-block { grid-area: text; }
  .page-news-industry-trends__content-grid--reverse .page-news-industry-trends__image-wrapper { grid-area: image; }
}

.page-news-industry-trends__text-block h3 {
  font-size: 1.8em;
  color: inherit;
  margin-bottom: 15px;
}

.page-news-industry-trends__text-block p {
  margin-bottom: 15px;
  color: inherit;
}

.page-news-industry-trends__text-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: inherit;
}

.page-news-industry-trends__text-block li {
  margin-bottom: 8px;
  color: inherit;
}

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

.page-news-industry-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

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

.page-news-industry-trends__card {
  background: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 400px; /* Ensure cards have minimum height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news-industry-trends__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-industry-trends__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-news-industry-trends__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-news-industry-trends__card p {
  font-size: 0.95em;
  color: #555555;
}

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

.page-news-industry-trends__product-item {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news-industry-trends__product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-industry-trends__product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-news-industry-trends__product-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

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

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

.page-news-industry-trends__product-item p {
  font-size: 0.9em;
  color: #555555;
}

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

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

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

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

.page-news-industry-trends__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-news-industry-trends__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #017439;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-toggle {
  color: #C30808;
  transform: rotate(45deg);
}

.page-news-industry-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #fdfdfd;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-news-industry-trends__faq-answer p {
  margin: 0;
  color: #555555;
  font-size: 0.95em;
}

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

.page-news-industry-trends__cta-content {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.page-news-industry-trends__cta-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-news-industry-trends__cta-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
  .page-news-industry-trends__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-news-industry-trends__hero-title {
    font-size: 2em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1em;
  }
  .page-news-industry-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-top: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news-industry-trends__cta-button--secondary {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-news-industry-trends__cta-content {
    padding: 30px 20px;
  }
  .page-news-industry-trends__cta-title {
    font-size: 1.8em;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-trends__section-description {
    font-size: 0.95em;
  }
  .page-news-industry-trends__text-block h3 {
    font-size: 1.5em;
  }
  .page-news-industry-trends__content-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-trends__feature-grid, .page-news-industry-trends__product-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-trends__card, .page-news-industry-trends__product-item {
    padding: 20px;
    min-height: auto;
  }
  .page-news-industry-trends__card-image, .page-news-industry-trends__product-image {
    height: 150px;
  }
  .page-news-industry-trends__faq-question {
    padding: 15px 20px;
  }
  .page-news-industry-trends__faq-question h3 {
    font-size: 1em;
  }
  .page-news-industry-trends__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-news-industry-trends__faq-answer {
    padding: 15px 20px !important;
  }
  /* All images responsive */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .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;
  }
  .page-news-industry-trends__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}