.page-index-core-values {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background: #000; /* From shared.css body background */
}

.page-index-core-values__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-index-core-values__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top: var(--header-offset) */
  margin-top: 0;
  overflow: hidden;
}

.page-index-core-values__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-index-core-values__hero-image {
  width: 100%;
  margin: 0;
}

.page-index-core-values__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* Intro Section */
.page-index-core-values__intro-section {
  padding: 60px 0;
  text-align: center;
  background: #0d0d0d; /* Slightly lighter dark background for contrast with body */
  color: #ffffff;
}

.page-index-core-values__main-title {
  font-size: 42px;
  font-weight: 700;
  color: #FFD700; /* Brand gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-core-values__intro-text {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* Core Value Sections */
.page-index-core-values__value-section {
  padding: 80px 0;
  background: #000; /* Matching body background */
  color: #f0f0f0;
}

.page-index-core-values__value-card {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
}

.page-index-core-values__value-card--reverse {
  flex-direction: row-reverse;
}

.page-index-core-values__value-content {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent light background for dark-bg body */
  border-radius: 8px;
  margin: 0 20px;
  color: #f0f0f0;
}

.page-index-core-values__value-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-index-core-values__value-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.page-index-core-values__value-heading {
  font-size: 32px;
  color: #FFD700; /* Brand gold */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-index-core-values__value-description {
  font-size: 16px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

/* CTA Section */
.page-index-core-values__cta-section {
  padding: 80px 0;
  text-align: center;
  background: #DC143C; /* Brand red */
  color: #ffffff;
}

.page-index-core-values__cta-heading {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-index-core-values__cta-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.page-index-core-values__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-core-values__btn-primary,
.page-index-core-values__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-core-values__btn-primary {
  background: #FFD700; /* Brand gold */
  color: #000000;
  border: 2px solid #FFD700;
}

.page-index-core-values__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
}

.page-index-core-values__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-core-values__btn-secondary:hover {
  background: #ffffff;
  color: #DC143C;
}

/* FAQ Section */
.page-index-core-values__faq-section {
  padding: 80px 0;
  background: #f9f9f9; /* Light background for FAQ */
  color: #333333; /* Dark text for light background */
}

.page-index-core-values__faq-main-heading {
  font-size: 38px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-index-core-values__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-core-values__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-core-values__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #333333;
}

.page-index-core-values__faq-item.active .page-index-core-values__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #ffffff;
  border-radius: 0 0 5px 5px;
}

.page-index-core-values__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-index-core-values__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-core-values__faq-question:active {
  background: #eeeeee;
}

.page-index-core-values__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-index-core-values__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-core-values__faq-item.active .page-index-core-values__faq-toggle {
  color: #333;
}

/* General image responsiveness */
.page-index-core-values img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Tablets and Mobiles */
@media (max-width: 1024px) {
  .page-index-core-values__main-title {
    font-size: 36px;
  }

  .page-index-core-values__intro-text {
    font-size: 16px;
  }

  .page-index-core-values__value-card {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .page-index-core-values__value-card--reverse {
    flex-direction: column;
  }

  .page-index-core-values__value-content {
    margin: 20px 0;
    padding: 30px;
  }

  .page-index-core-values__value-heading {
    font-size: 28px;
  }

  .page-index-core-values__cta-heading {
    font-size: 32px;
  }

  .page-index-core-values__faq-main-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-index-core-values__hero-section {
    padding-top: 0 !important;
  }
  
  .page-index-core-values__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-core-values__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index-core-values__intro-section,
  .page-index-core-values__value-section,
  .page-index-core-values__cta-section,
  .page-index-core-values__faq-section {
    padding: 40px 0;
  }

  .page-index-core-values__main-title {
    font-size: 28px;
  }

  .page-index-core-values__intro-text {
    font-size: 15px;
  }

  .page-index-core-values__value-card {
    margin-bottom: 30px;
  }

  .page-index-core-values__value-content {
    padding: 25px;
    margin: 15px 0;
  }

  .page-index-core-values__value-heading {
    font-size: 24px;
  }

  .page-index-core-values__value-description {
    font-size: 14px;
  }

  .page-index-core-values__cta-heading {
    font-size: 28px;
  }

  .page-index-core-values__cta-description {
    font-size: 15px;
  }

  /* 按钮与按钮容器 */
  .page-index-core-values__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index-core-values__btn-primary,
  .page-index-core-values__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-index-core-values__faq-main-heading {
    font-size: 28px;
  }

  .page-index-core-values__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index-core-values__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index-core-values__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index-core-values__faq-answer {
    padding: 0 15px;
  }
  
  .page-index-core-values__faq-item.active .page-index-core-values__faq-answer {
    padding: 15px !important;
  }

  /* 通用图片与容器 */
  .page-index-core-values img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-core-values__value-image-wrapper {
    padding: 0;
  }
  
  .page-index-core-values__value-image {
    border-radius: 0;
  }

  /* 其他内容模块 */
  .page-index-core-values__faq-list {
    padding: 0 15px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-index-core-values__faq-item {
    margin-bottom: 10px;
  }
}