.page-news-industry-trends {
  --primary-color: #300060;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-section: #300060;
  --bg-light-section: #f8f8f8;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--dark-bg); /* Inherit from shared.css */
}

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

.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  color: var(--text-light);
}

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

.page-news-industry-trends__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-news-industry-trends__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-news-industry-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

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

.page-news-industry-trends__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-news-industry-trends__introduction-section,
.page-news-industry-trends__regulatory-impact-section,
.page-news-industry-trends__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

.page-news-industry-trends__dark-bg {
  background-color: var(--bg-dark-section);
  color: var(--text-light);
}

.page-news-industry-trends__trends-section,
.page-news-industry-trends__outlook-section,
.page-news-industry-trends__faq-section {
  padding: 80px 0;
  background-color: var(--bg-light-section);
  color: var(--text-dark);
}

.page-news-industry-trends__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: inherit;
}

.page-news-industry-trends__dark-bg .page-news-industry-trends__section-title {
  color: var(--text-light);
}

.page-news-industry-trends__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: inherit;
  text-align: left;
}

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

.page-news-industry-trends__link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-news-industry-trends__trend-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  text-align: left;
}

.page-news-industry-trends__trend-item:nth-child(odd) .page-news-industry-trends__image {
  order: 1;
  margin-right: 40px;
}

.page-news-industry-trends__trend-item:nth-child(even) .page-news-industry-trends__image {
  order: 2;
  margin-left: 40px;
}

.page-news-industry-trends__trend-item .page-news-industry-trends__image {
  flex: 1 1 40%;
  min-width: 300px;
}

.page-news-industry-trends__trend-item .page-news-industry-trends__text-block, 
.page-news-industry-trends__trend-item .page-news-industry-trends__trend-title {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-news-industry-trends__trend-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-news-industry-trends__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-trends__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

.page-news-industry-trends__faq-toggle {
  font-size: 1.5em;
  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, padding 0.3s ease;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-dark);
}

.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-title {
    font-size: 2.8em;
  }
  .page-news-industry-trends__section-title {
    font-size: 2em;
  }
  .page-news-industry-trends__trend-item .page-news-industry-trends__image,
  .page-news-industry-trends__trend-item .page-news-industry-trends__text-block,
  .page-news-industry-trends__trend-item .page-news-industry-trends__trend-title {
    flex: 1 1 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .page-news-industry-trends__trend-item:nth-child(odd) .page-news-industry-trends__image,
  .page-news-industry-trends__trend-item:nth-child(even) .page-news-industry-trends__image {
    order: initial;
  }
  .page-news-industry-trends__trend-item .page-news-industry-trends__text-block {
    text-align: left; /* Keep text aligned left for readability */
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends__hero-section {
    height: 500px;
    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__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news-industry-trends__introduction-section,
  .page-news-industry-trends__trends-section,
  .page-news-industry-trends__regulatory-impact-section,
  .page-news-industry-trends__outlook-section,
  .page-news-industry-trends__conclusion-section,
  .page-news-industry-trends__faq-section {
    padding: 40px 0;
  }
  .page-news-industry-trends__container {
    padding: 0 15px;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-news-industry-trends__text-block {
    font-size: 0.95em;
  }
  .page-news-industry-trends__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-industry-trends__trend-item {
    margin-bottom: 40px;
  }
  .page-news-industry-trends__trend-title {
    font-size: 1.5em;
  }
  .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;
  }
  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container {
    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__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;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow-x: hidden;
  }
  .page-news-industry-trends__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-news-industry-trends__hero-section {
    height: 400px;
  }
  .page-news-industry-trends__hero-title {
    font-size: 1.5em;
  }
  .page-news-industry-trends__hero-description {
    font-size: 0.9em;
  }
  .page-news-industry-trends__section-title {
    font-size: 1.5em;
  }
  .page-news-industry-trends__trend-title {
    font-size: 1.3em;
  }
}