.page-news-industry-trends {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-dark: #0a0a0a; /* Body background from shared.css */
  color: var(--text-color-light);
  background-color: var(--bg-dark);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* HERO Section */
.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure sufficient height */
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-news-industry-trends__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-news-industry-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Slightly darker background for text */
  border-radius: 10px;
}

.page-news-industry-trends__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news-industry-trends__hero-description {
  font-size: 1.15rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

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

.page-news-industry-trends__btn-primary,
.page-news-industry-trends__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news-industry-trends__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-news-industry-trends__btn-primary:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
}

.page-news-industry-trends__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-news-industry-trends__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* General Section Styling */
.page-news-industry-trends__section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-news-industry-trends__section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
}

.page-news-industry-trends__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-news-industry-trends__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.page-news-industry-trends__text-block strong {
  color: var(--primary-color);
}

.page-news-industry-trends__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* Feature Grid for Technology & Products */
.page-news-industry-trends__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-trends__feature-item {
  background: rgba(255, 255, 255, 0.08); /* Light transparent background for cards */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-color-light);
}

.page-news-industry-trends__feature-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news-industry-trends__feature-description {
  font-size: 1rem;
  color: var(--text-color-light);
}

/* Video Section */
.page-news-industry-trends__video-section {
  padding: 60px 0;
  background-color: var(--bg-dark);
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-news-industry-trends__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%; /* Desktop default */
}

.page-news-industry-trends__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* Ensure it behaves as a block element */
  cursor: pointer;
}

.page-news-industry-trends__cta-buttons--video {
  margin-top: 40px;
}

/* FAQ Section */
.page-news-industry-trends__faq {
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-news-industry-trends__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-color-light);
}

.page-news-industry-trends__faq-item[open] {
  background: rgba(255, 255, 255, 0.12);
}

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-color);
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-news-industry-trends__faq-qtext {
  flex-grow: 1;
}

.page-news-industry-trends__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  line-height: 1;
}

.page-news-industry-trends__faq-item[open] .page-news-industry-trends__faq-toggle {
  content: '−';
}

.page-news-industry-trends__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-color-light);
}

/* Conclusion Section */
.page-news-industry-trends__conclusion {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-content {
    padding: 15px;
  }

  .page-news-industry-trends__hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

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

@media (max-width: 768px) {
  .page-news-industry-trends__container {
    padding: 0 15px;
  }

  .page-news-industry-trends__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-news-industry-trends__hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-news-industry-trends__hero-description,
  .page-news-industry-trends__text-block,
  .page-news-industry-trends__feature-description,
  .page-news-industry-trends__faq-answer p {
    font-size: 1rem;
  }

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

  .page-news-industry-trends__feature-title {
    font-size: 1.5rem;
  }

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

  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-news-industry-trends video,
  .page-news-industry-trends__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry-trends__video-section,
  .page-news-industry-trends__video-container,
  .page-news-industry-trends__video-wrapper,
  .page-news-industry-trends__section,
  .page-news-industry-trends__container,
  .page-news-industry-trends__feature-item,
  .page-news-industry-trends__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-news-industry-trends__video-section {
    padding-top: 10px !important;
  }

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