.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.page-about__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Adjusted to prevent double padding with body */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  color: #FFF1E8;
  background-color: #140C0C; /* Background */
}

.page-about__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-about__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-about__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-about__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #FFF1E8;
}

.page-about__story-section {
  padding: 80px 0;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-about__story-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__story-content {
  flex: 1;
}

.page-about__story-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-about__story-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-about__story-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__why-choose-us {
  padding: 80px 0;
  background-color: #140C0C; /* Background */
  color: #FFF1E8;
}

.page-about__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-about__feature-card {
  background-color: #2A1212; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E; /* Border */
}

.page-about__feature-title {
  font-size: 1.5em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
}

.page-about__feature-card p {
  font-size: 1em;
  color: #FFF1E8;
}

.page-about__features-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__team-section {
  padding: 80px 0;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-about__team-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__team-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-about__team-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__team-content {
  flex: 1;
}

.page-about__team-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-about__values-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-about__values-list li {
  background-color: #140C0C; /* Background */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  border-left: 5px solid #F3C54D; /* Gold */
  font-size: 1.1em;
}

.page-about__values-list li strong {
  color: #F3C54D; /* Gold */
}

.page-about__responsibility-section {
  padding: 80px 0;
  background-color: #140C0C; /* Background */
  color: #FFF1E8;
}

.page-about__responsibility-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-about__responsibility-content {
  flex: 1;
}

.page-about__responsibility-subtitle {
  font-size: 1.8em;
  color: #F3C54D; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-about__responsibility-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-about__responsibility-image-wrapper {
  flex: 1;
  min-width: 400px;
}

.page-about__responsibility-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8;
}

.page-about__cta-container {
  max-width: 900px;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #FFF1E8;
  border: none;
}

.page-about__btn-primary:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
}

.page-about__btn-secondary {
  background: #140C0C; /* Background */
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold */
}

.page-about__btn-secondary:hover {
  background: #F3C54D; /* Gold */
  color: #140C0C; /* Background */
  transform: translateY(-2px);
}

/* General image styling */
.page-about img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__story-grid,
  .page-about__team-grid,
  .page-about__responsibility-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-about__story-image-wrapper,
  .page-about__team-image-wrapper,
  .page-about__responsibility-image-wrapper {
    min-width: unset;
    width: 100%;
    order: -1; /* Image appears above content on smaller screens */
    margin-bottom: 30px;
  }

  .page-about__hero-content {
    padding: 30px 15px;
  }

  .page-about__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-about__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.5em);
  }

  .page-about__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-about__cta-button {
    margin: 8px;
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  /* HERO 主图区域 */
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-about__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__hero-content {
    padding: 20px 15px;
  }

  .page-about__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-about__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-about__section-title {
    font-size: clamp(1.5em, 5.5vw, 2em);
    margin-bottom: 30px;
  }

  .page-about__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  /* 通用图片与容器 */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-about__container,
  .page-about__story-section,
  .page-about__why-choose-us,
  .page-about__team-section,
  .page-about__responsibility-section,
  .page-about__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__story-grid,
  .page-about__team-grid,
  .page-about__responsibility-grid {
    gap: 20px;
  }

  .page-about__story-image-wrapper,
  .page-about__team-image-wrapper,
  .page-about__responsibility-image-wrapper {
    margin-bottom: 20px;
  }

  .page-about__feature-card {
    padding: 20px;
  }

  .page-about__feature-title {
    font-size: 1.3em;
  }

  .page-about__values-list li {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-about__responsibility-subtitle {
    font-size: 1.5em;
    margin-top: 20px;
  }

  /* 按钮与按钮容器 */
  .page-about__cta-button,
  .page-about__btn-primary,
  .page-about__btn-secondary,
  .page-about a[class*="button"],
  .page-about 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: 8px 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
}