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

.page-news-industry-trends-analysis__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background: linear-gradient(135deg, #26A9E0 0%, #1a7baf 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-news-industry-trends-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-news-industry-trends-analysis__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends-analysis__intro-text {
  font-size: 1.25em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-news-industry-trends-analysis__btn-primary,
.page-news-industry-trends-analysis__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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-trends-analysis__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-news-industry-trends-analysis__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}

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

.page-news-industry-trends-analysis__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-news-industry-trends-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-news-industry-trends-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-news-industry-trends-analysis__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-news-industry-trends-analysis__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
  color: #26A9E0; /* Brand primary color for titles */
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(38, 169, 224, 0.3);
}

.page-news-industry-trends-analysis__content-area p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-news-industry-trends-analysis__dark-section .page-news-industry-trends-analysis__section-title,
.page-news-industry-trends-analysis__dark-section p {
  color: #ffffff;
}

.page-news-industry-trends-analysis__light-bg {
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
}

.page-news-industry-trends-analysis__dark-section {
  background-color: #1a1a1a; /* Slightly lighter than body for contrast */
  color: #ffffff;
}

.page-news-industry-trends-analysis__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-news-industry-trends-analysis__image-align-right {
  width: 100%;
  max-width: 600px;
  float: right;
  margin: 0 0 20px 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-news-industry-trends-analysis__image-align-left {
  width: 100%;
  max-width: 600px;
  float: left;
  margin: 0 40px 20px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-news-industry-trends-analysis__faq-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  color: #333333;
}

.page-news-industry-trends-analysis__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news-industry-trends-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #333333;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-news-industry-trends-analysis__faq-question:hover {
  background-color: #f0f0f0;
}

.page-news-industry-trends-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-news-industry-trends-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-news-industry-trends-analysis__faq-item[open] .page-news-industry-trends-analysis__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-news-industry-trends-analysis__faq-item.active .page-news-industry-trends-analysis__faq-answer {
  max-height: 500px !important; /* For JS-controlled div version */
  padding-top: 10px;
}

/* Clear floats */
.page-news-industry-trends-analysis__container::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-trends-analysis__main-title {
    font-size: 3em;
  }

  .page-news-industry-trends-analysis__section-title {
    font-size: 2em;
  }

  .page-news-industry-trends-analysis__image-align-right,
  .page-news-industry-trends-analysis__image-align-left {
    float: none;
    margin: 40px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-industry-trends-analysis__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

  .page-news-industry-trends-analysis__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-news-industry-trends-analysis__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

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

  .page-news-industry-trends-analysis__content-area {
    padding: 40px 15px;
  }

  .page-news-industry-trends-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-news-industry-trends-analysis__content-area p {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-news-industry-trends-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    float: none !important;
    margin: 30px auto !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-trends-analysis__container,
  .page-news-industry-trends-analysis__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-news-industry-trends-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  .page-news-industry-trends-analysis__dark-section {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }

  .page-news-industry-trends-analysis__light-bg {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}