.page-news-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#121212) */
}

.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #CC0000, #990000); /* Brand red gradient */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-industry-trends__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-news-industry-trends__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-news-industry-trends__hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow: hidden;
}

.page-news-industry-trends__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}

.page-news-industry-trends__section {
  padding: 60px 20px;
}

.page-news-industry-trends__content-area {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff; /* Text color for dark body background */
}

.page-news-industry-trends__dark-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-news-industry-trends__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #CC0000;
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

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

.page-news-industry-trends__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news-industry-trends__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-news-industry-trends__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%; /* Ensure card images take full width */
  min-height: 200px; /* Minimum size for content images */
}

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

.page-news-industry-trends__card-text {
  font-size: 1em;
  color: #e0e0e0;
  text-align: justify;
}

.page-news-industry-trends__cta-section {
  text-align: center;
  background-color: #CC0000; /* Main brand color for CTA */
  color: #ffffff;
  padding: 80px 20px;
}

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

.page-news-industry-trends__btn-primary,
.page-news-industry-trends__btn-secondary {
  display: inline-block;
  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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-trends__btn-primary {
  background-color: #FFD700;
  color: #CC0000;
  border: 2px solid #FFD700;
}

.page-news-industry-trends__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-news-industry-trends__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-news-industry-trends__btn-secondary:hover {
  background-color: #ffffff;
  color: #CC0000;
  transform: translateY(-3px);
}

.page-news-industry-trends__faq-section {
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

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

.page-news-industry-trends__faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08);
}

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

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

.page-news-industry-trends__faq-title {
  font-size: 1.2em;
  color: #FFD700;
  margin: 0;
}

.page-news-industry-trends__faq-toggle {
  font-size: 1.8em;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.5em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
  .page-news-industry-trends__trends-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry-trends__hero-title {
    font-size: 2em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1em;
  }
  .page-news-industry-trends__section {
    padding: 40px 15px;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.8em;
  }
  .page-news-industry-trends__text-block {
    font-size: 0.95em;
  }
  .page-news-industry-trends__trends-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-industry-trends__card {
    padding: 20px;
  }
  .page-news-industry-trends__card-title {
    font-size: 1.3em;
  }
  .page-news-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-trends__image,
  .page-news-industry-trends__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-trends__hero-video-wrapper,
  .page-news-industry-trends__video,
  .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__faq-list,
  .page-news-industry-trends__faq-item,
  .page-news-industry-trends__faq-question,
  .page-news-industry-trends__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-news-industry-trends__faq-question,
  .page-news-industry-trends__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
    padding: 15px 15px 15px !important;
  }
}