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

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

.page-news-industry__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-news-industry__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-news-industry__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-news-industry__hero-media {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry__video-link {
  display: block;
  line-height: 0;
}

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

.page-news-industry__btn-primary,
.page-news-industry__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
}

.page-news-industry__btn-primary {
  background-color: #FF4500; /* Orange-red for primary CTA */
  color: #ffffff;
  border: 2px solid #FF4500;
}

.page-news-industry__btn-primary:hover {
  background-color: #e63e00;
  border-color: #e63e00;
  transform: translateY(-2px);
}

.page-news-industry__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary button */
  border: 2px solid #FFD700;
}

.page-news-industry__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.page-news-industry__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-news-industry__section {
  padding: 60px 0;
}

.page-news-industry__content-area {
  background-color: var(--dark-bg-1); /* Use shared dark background */
  color: #ffffff;
}

.page-news-industry__dark-bg {
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-news-industry__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-news-industry__sub-title {
  font-size: 1.8em;
  color: #00BFFF; /* Deep sky blue for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-news-industry__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-news-industry__paragraph a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-news-industry__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-news-industry__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-news-industry__list-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 4px solid #00BFFF;
  border-radius: 5px;
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-news-industry__faq-section {
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

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

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

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

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

.page-news-industry__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #00BFFF;
  transition: transform 0.3s ease;
}

.page-news-industry__faq-item.active .page-news-industry__faq-toggle {
  transform: rotate(45deg);
  color: #FF4500;
}

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

.page-news-industry__faq-item.active .page-news-industry__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides other styles */
  padding: 15px 20px;
}

.page-news-industry__cta-section {
  background: linear-gradient(90deg, #00BFFF, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #1a1a1a;
}

.page-news-industry__flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news-industry__cta-title {
  font-size: 2.8em;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry__cta-description {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-news-industry__cta-description a {
  color: #FF4500;
  text-decoration: none;
  font-weight: bold;
}

.page-news-industry__cta-description a:hover {
  text-decoration: underline;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news-industry__main-title {
    font-size: 2.8em;
  }
  .page-news-industry__section-title {
    font-size: 2em;
  }
  .page-news-industry__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news-industry__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-industry__main-title {
    font-size: 2.2em;
  }
  .page-news-industry__intro-text {
    font-size: 1em;
  }
  .page-news-industry__section {
    padding: 40px 0;
  }
  .page-news-industry__section-title {
    font-size: 1.8em;
  }
  .page-news-industry__sub-title {
    font-size: 1.5em;
  }
  .page-news-industry__paragraph {
    font-size: 1em;
  }

  /* Images responsiveness */
  .page-news-industry img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness */
  .page-news-industry video,
  .page-news-industry__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry__hero-media,
  .page-news-industry__video-link,
  .page-news-industry__container,
  .page-news-industry__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-news-industry__btn-primary,
  .page-news-industry__btn-secondary,
  .page-news-industry a[class*="button"],
  .page-news-industry a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important; /* Adjust margin for vertical stacking */
  }
  .page-news-industry__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-news-industry__faq-question {
    padding: 15px;
  }
  .page-news-industry__faq-title {
    font-size: 1.1em;
  }
  .page-news-industry__faq-answer {
    padding: 0 15px;
  }
  .page-news-industry__faq-item.active .page-news-industry__faq-answer {
    padding: 15px 15px;
  }
  .page-news-industry__cta-title {
    font-size: 1.8em;
  }
  .page-news-industry__cta-description {
    font-size: 1.1em;
  }
}