.page-news-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark body background */
  background-color: #08160F; /* Main background */
}

.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
  overflow: hidden;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.page-news-industry-trends__hero-content {
  max-width: 900px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-news-industry-trends__main-title {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.page-news-industry-trends__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-trends__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-news-industry-trends__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-news-industry-trends__btn-secondary {
  background: transparent;
  color: #11A84E;
  border: 2px solid #11A84E;
  margin-left: 20px;
}

.page-news-industry-trends__btn-secondary:hover {
  background-color: rgba(17, 168, 78, 0.1);
  color: #2AD16F;
}

.page-news-industry-trends__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Content area background */
  color: #F2FFF6; /* Text Main color */
}

.page-news-industry-trends__text-block {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-news-industry-trends__section-title {
  font-size: 2.2em;
  color: #F2FFF6;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-news-industry-trends__sub-title {
  font-size: 1.8em;
  color: #22C768;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.page-news-industry-trends p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary color */
}

.page-news-industry-trends p strong {
  color: #F2FFF6;
}

.page-news-industry-trends__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
  min-height: 250px;
}

.page-news-industry-trends__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 25px auto;
  max-width: 800px;
  object-fit: cover;
  min-height: 200px;
}

.page-news-industry-trends__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #11271B;
  border-radius: 10px;
  margin-top: 50px;
  border: 1px solid #2E7A4E;
}

.page-news-industry-trends__cta-text {
  font-size: 1.6em;
  color: #F2FFF6;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-news-industry-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-news-industry-trends__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-news-industry-trends__faq-question::-webkit-details-marker {
  display: none;
}

.page-news-industry-trends__faq-question:hover {
  background-color: #1E3A2A;
}

.page-news-industry-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #22C768;
}

.page-news-industry-trends__faq-item[open] .page-news-industry-trends__faq-toggle {
  transform: rotate(45deg);
}

.page-news-industry-trends__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-news-industry-trends__faq-answer p {
  color: #A7D9B8;
  margin-bottom: 0;
}

.page-news-industry-trends a {
  color: #2AD16F;
  text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding: 40px 15px;
  }

  .page-news-industry-trends__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-news-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-industry-trends__btn-secondary {
    margin-left: 0;
  }

  .page-news-industry-trends__content-area {
    padding: 30px 15px;
  }

  .page-news-industry-trends__text-block {
    padding: 15px;
  }

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

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

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

  .page-news-industry-trends__image-full-width,
  .page-news-industry-trends__image-content {
    margin: 20px 0;
  }

  .page-news-industry-trends__cta-text {
    font-size: 1.4em;
  }

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

  .page-news-industry-trends__faq-answer {
    padding: 0 20px 15px 20px;
  }

  /* Mobile responsiveness for images and containers */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry-trends__hero-section,
  .page-news-industry-trends__content-area,
  .page-news-industry-trends__text-block,
  .page-news-industry-trends__cta-section,
  .page-news-industry-trends__faq-list,
  .page-news-industry-trends__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-news-industry-trends__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}