.page-news-industry-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--primary-color, #0A1931);
}

.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;
  text-align: center;
  padding: 80px 0;
  background-color: #0A1931;
  color: #ffffff;
  overflow: hidden;
}

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

.page-news-industry-trends__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.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__btn-primary,
.page-news-industry-trends__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

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

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

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

.page-news-industry-trends__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-news-industry-trends__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-news-industry-trends__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-trends__latest-news-section,
.page-news-industry-trends__expert-insights-section,
.page-news-industry-trends__faq-section {
  padding: 60px 0;
  background-color: var(--primary-color, #0A1931);
  color: #ffffff;
}

.page-news-industry-trends__industry-analysis-section,
.page-news-industry-trends__why-choose-section,
.page-news-industry-trends__cta-section {
  padding: 60px 0;
  background-color: #0A1931;
  color: #ffffff;
}

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

.page-news-industry-trends__news-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-news-industry-trends__news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-news-industry-trends__news-title a {
  color: #FFD700;
  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;
  flex-grow: 1;
}

.page-news-industry-trends__read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
}

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

.page-news-industry-trends__cta-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-news-industry-trends__analysis-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-news-industry-trends__analysis-text {
  flex: 1;
  text-align: left;
}

.page-news-industry-trends__analysis-text p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-news-industry-trends__analysis-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-news-industry-trends__analysis-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__expert-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse; /* Text on left, video on right */
}

.page-news-industry-trends__expert-video-wrapper {
  flex: 1;
  min-width: 300px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-news-industry-trends__expert-text {
  flex: 1;
  text-align: left;
}

.page-news-industry-trends__expert-text p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

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

.page-news-industry-trends__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-industry-trends__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-news-industry-trends__feature-description {
  color: #cccccc;
}

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

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

.page-news-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

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

.page-news-industry-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.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: #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 25px 25px 25px;
}

.page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-news-industry-trends__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A1931;
}

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

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.5em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 1.1em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
  .page-news-industry-trends__analysis-content,
  .page-news-industry-trends__expert-content {
    flex-direction: column;
  }
  .page-news-industry-trends__expert-content {
    flex-direction: column-reverse; /* Expert text above video on smaller screens */
  }
  .page-news-industry-trends__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    padding: 60px 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;
  }
  .page-news-industry-trends__section-subtitle {
    font-size: 1em;
  }
  .page-news-industry-trends__latest-news-section,
  .page-news-industry-trends__industry-analysis-section,
  .page-news-industry-trends__expert-insights-section,
  .page-news-industry-trends__why-choose-section,
  .page-news-industry-trends__faq-section,
  .page-news-industry-trends__cta-section {
    padding: 40px 0;
  }
  .page-news-industry-trends__news-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-trends__analysis-content,
  .page-news-industry-trends__expert-content {
    gap: 20px;
  }
  .page-news-industry-trends__features-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-trends__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news-industry-trends__faq-answer {
    padding: 0 20px;
  }
  .page-news-industry-trends__faq-item.active .page-news-industry-trends__faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .page-news-industry-trends__cta-title {
    font-size: 2em;
  }
  .page-news-industry-trends__cta-description {
    font-size: 1em;
  }

  /* Mobile specific overrides for images, videos, and buttons */
  .page-news-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .page-news-industry-trends__video-section,
  .page-news-industry-trends__video-container,
  .page-news-industry-trends__video-wrapper,
  .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 !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  .page-news-industry-trends__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .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 !important;
    padding-right: 15px !important;
  }
  .page-news-industry-trends__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column !important; /* Ensure vertical stacking on mobile */
  }
}