.page-resources-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* From shared.css body background */
}

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

.page-resources-industry-trends__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding-top: 0; /* Assumed shared.css handles body padding-top */
  padding-bottom: 80px;
  overflow: hidden;
  background-color: #017439; /* Brand primary color */
}

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

.page-resources-industry-trends__hero-section .page-resources-industry-trends__container {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

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

.page-resources-industry-trends__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-industry-trends__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Custom color for login/register */
  color: #FFFF00; /* Custom font color for login/register */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-industry-trends__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-resources-industry-trends__section {
  padding: 60px 0;
}

.page-resources-industry-trends__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-industry-trends__dark-bg {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

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

.page-resources-industry-trends__section-subtitle {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-resources-industry-trends__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-industry-trends__highlight {
  color: #FFFF00;
  font-weight: bold;
}

.page-resources-industry-trends__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-resources-industry-trends__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-resources-industry-trends__content-grid--reverse .page-resources-industry-trends__image-wrapper {
  order: 2;
}

.page-resources-industry-trends__content-grid--reverse .page-resources-industry-trends__text-content {
  order: 1;
}

.page-resources-industry-trends__image-wrapper {
  text-align: center;
}

.page-resources-industry-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-industry-trends__link {
  color: #FFFF00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-industry-trends__link:hover {
  color: #f0f0f0;
}

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

.page-resources-industry-trends__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #017439;
}

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

.page-resources-industry-trends__cta-description .page-resources-industry-trends__link {
  color: #017439;
}

.page-resources-industry-trends__cta-description .page-resources-industry-trends__link:hover {
  color: #004d2b;
}

/* FAQ Section */
.page-resources-industry-trends__faq-section {
  padding: 60px 0;
  background-color: #017439;
  color: #ffffff;
}

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

.page-resources-industry-trends__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

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

.page-resources-industry-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-industry-trends__faq-item.active .page-resources-industry-trends__faq-toggle {
  transform: rotate(45deg); /* Change to X or rotate for active state */
}

.page-resources-industry-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

.page-resources-industry-trends__faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

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

  .page-resources-industry-trends__section-title {
    font-size: 2em;
  }

  .page-resources-industry-trends__section-subtitle {
    font-size: 1.8em;
  }

  .page-resources-industry-trends__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-resources-industry-trends__content-grid--reverse .page-resources-industry-trends__image-wrapper {
    order: initial;
  }

  .page-resources-industry-trends__content-grid--reverse .page-resources-industry-trends__text-content {
    order: initial;
  }

  .page-resources-industry-trends__cta-title {
    font-size: 2.2em;
  }
}

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

  .page-resources-industry-trends__container {
    padding: 0 15px;
  }

  /* HERO 主图区域 */
  .page-resources-industry-trends__hero-section {
    min-height: 400px;
    padding-top: 0 !important; /* Ensure no double padding if shared.css sets body padding */
    padding-bottom: 40px;
  }

  .page-resources-industry-trends__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-industry-trends__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* 通用图片与容器 */
  .page-resources-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-industry-trends__section,
  .page-resources-industry-trends__cta-section,
  .page-resources-industry-trends__faq-section {
    padding: 40px 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-industry-trends__section .page-resources-industry-trends__container,
  .page-resources-industry-trends__cta-section .page-resources-industry-trends__container,
  .page-resources-industry-trends__faq-section .page-resources-industry-trends__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-resources-industry-trends__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-industry-trends__section-subtitle {
    font-size: 1.5em;
    margin-bottom: 25px;
  }

  .page-resources-industry-trends__text-block {
    font-size: 0.95em;
  }

  .page-resources-industry-trends__content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  /* 按钮与按钮容器 */
  .page-resources-industry-trends__btn-primary,
  .page-resources-industry-trends a[class*="button"],
  .page-resources-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: 12px 15px !important;
    font-size: 1em !important;
  }

  .page-resources-industry-trends__cta-section .page-resources-industry-trends__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-resources-industry-trends__cta-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-resources-industry-trends__cta-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  /* FAQ 区域 */
  .page-resources-industry-trends__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }

  .page-resources-industry-trends__faq-answer {
    padding: 0 15px;
  }

  .page-resources-industry-trends__faq-item.active .page-resources-industry-trends__faq-answer {
    padding: 10px 15px !important;
  }
}