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

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align content to top, image below */
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 40px;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 20px 20px;
  background: linear-gradient(to bottom, rgba(20, 12, 12, 0.8), rgba(20, 12, 12, 0.95)); /* Dark overlay for text readability */
  border-radius: 8px;
  margin-top: 80px; /* Push content down over the image */
}

.page-contact__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F3C54D; /* Gold */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.1rem;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-contact__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-contact__btn-secondary {
  background: #C61F1F; /* Main Color */
  color: #ffffff;
  border: 2px solid #F3C54D; /* Gold border */
}

.page-contact__btn-secondary:hover {
  background: #E53030; /* Auxiliary Color */
  transform: translateY(-2px);
}

.page-contact__section-title {
  font-size: 2.5rem;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-contact__section-description {
  font-size: 1.1rem;
  color: #FFF1E8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__dark-section {
  background-color: #140C0C; /* Background */
  padding: 60px 0;
}

.page-contact__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.page-contact__method-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.page-contact__method-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__method-title {
  font-size: 1.5rem;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__method-text {
  font-size: 1rem;
  color: #FFF1E8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  white-space: normal;
}

.page-contact__faq-section {
  background-color: #140C0C; /* Background */
  padding: 60px 0;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__faq-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFF1E8;
  background-color: #C61F1F; /* Main Color */
  list-style: none; /* Hide default details marker */
}

.page-contact__faq-question::-webkit-details-marker {
  display: none; /* Hide default details marker for webkit */
}

.page-contact__faq-qtext {
  flex-grow: 1;
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #F3C54D; /* Gold */
}

.page-contact__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #FFF1E8;
}

.page-contact__faq-item[open] .page-contact__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

.page-contact__faq-item[open] .page-contact__faq-question {
  background-color: #E53030; /* Auxiliary Color */
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  content: '−';
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #FFF1E8;
}

.page-contact__commitment-section {
  background-color: #C61F1F; /* Main Color */
  padding: 60px 0;
  color: #ffffff;
}

.page-contact__commitment-section .page-contact__section-title {
  color: #F3C54D; /* Gold */
}

.page-contact__commitment-section .page-contact__section-description {
  color: #ffffff;
}

.page-contact__commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  padding: 0 20px;
}

.page-contact__commitment-item {
  background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background */
  border: 1px solid #F3C54D; /* Gold border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  box-sizing: border-box;
}

.page-contact__commitment-heading {
  font-size: 1.6rem;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__commitment-item p {
  font-size: 1rem;
  color: #ffffff;
}

.page-contact__cta-bottom {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.page-contact__cta-bottom p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 30px;
}

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

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-contact__hero-content {
    padding: 60px 20px 20px;
    margin-top: 60px;
  }

  .page-contact__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-contact__section-title {
    font-size: 2rem;
  }

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

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-contact__hero-section {
    padding-top: 10px !important;
    min-height: 400px;
    padding-bottom: 30px;
  }

  .page-contact__hero-image {
    max-height: 400px;
  }

  .page-contact__hero-content {
    padding: 40px 15px 15px;
    margin-top: 40px;
  }

  .page-contact__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-contact__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 产品展示图区域 (Not explicitly a product grid, but general grid for methods) */
  .page-contact__methods-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 15px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .page-contact__method-card {
    padding: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

  .page-contact__container,
  .page-contact__section,
  .page-contact__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* 按钮与按钮容器 */
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact 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-left: 15px !important; /* Ensure text has padding inside button */
    padding-right: 15px !important;
  }

  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  /* 其他内容模块 (FAQ, Commitment) */
  .page-contact__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-contact__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-contact__faq-answer {
    padding: 0 20px;
  }

  .page-contact__faq-item[open] .page-contact__faq-answer {
    padding: 10px 20px 20px;
  }

  .page-contact__commitment-list {
    grid-template-columns: 1fr !important;
    padding: 0 15px !important;
  }

  .page-contact__commitment-heading {
    font-size: 1.4rem;
  }

  .page-contact__cta-bottom p {
    font-size: 1.1rem;
  }
}