.page-index-security-guarantees {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-index-security-guarantees__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-security-guarantees__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.page-index-security-guarantees__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-index-security-guarantees__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantees__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-index-security-guarantees__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-security-guarantees__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-security-guarantees__btn-primary,
.page-index-security-guarantees__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-index-security-guarantees__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-index-security-guarantees__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-index-security-guarantees__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green from button gradient */
  border: 2px solid #2AD16F;
}

.page-index-security-guarantees__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Background */
  transform: translateY(-3px);
}

.page-index-security-guarantees__intro-section,
.page-index-security-guarantees__features-section,
.page-index-security-guarantees__technology-section,
.page-index-security-guarantees__faq-section,
.page-index-security-guarantees__cta-section {
  padding: 60px 0;
}

.page-index-security-guarantees__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-security-guarantees__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-security-guarantees__paragraph {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-security-guarantees__highlight {
  color: #F2C14E; /* Gold */
  font-weight: 700;
}

.page-index-security-guarantees__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-security-guarantees__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-index-security-guarantees__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-security-guarantees__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8);
}

.page-index-security-guarantees__feature-title {
  font-size: 1.5rem;
  color: #2AD16F; /* Lighter green from button gradient */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-security-guarantees__technology-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-index-security-guarantees__tech-item {
  background-color: #11271B; /* Card BG */
  border-left: 4px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.page-index-security-guarantees__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-security-guarantees__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-index-security-guarantees__faq-question:hover {
  background-color: #13994A; /* Darker green from button gradient */
}

.page-index-security-guarantees__faq-item[open] > .page-index-security-guarantees__faq-question {
  background-color: #13994A; /* Darker green from button gradient */
}

.page-index-security-guarantees__faq-qtext {
  flex-grow: 1;
}

.page-index-security-guarantees__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-index-security-guarantees__faq-item[open] .page-index-security-guarantees__faq-toggle {
  content: '−';
}

.page-index-security-guarantees__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-index-security-guarantees__text-link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-index-security-guarantees__text-link:hover {
  color: #F2C14E;
}

.page-index-security-guarantees__faq-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 20px auto 0;
  border-radius: 8px;
  filter: brightness(0.9);
}

.page-index-security-guarantees__cta-section {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  border-top: 2px solid #2E7A4E;
}

.page-index-security-guarantees__cta-section .page-index-security-guarantees__section-title {
  color: #F2FFF6; /* Text Main */
}

.page-index-security-guarantees__cta-section .page-index-security-guarantees__section-title::after {
  background-color: #F2C14E; /* Gold */
}

.page-index-security-guarantees__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* ==================================================================
   Mobile Responsiveness (max-width: 768px)
   ================================================================== */
@media (max-width: 768px) {
  .page-index-security-guarantees__container {
    padding: 15px;
  }

  /* HERO 主图区域 */
  .page-index-security-guarantees__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-index-security-guarantees__hero-image-wrapper {
    max-height: 300px;
  }

  .page-index-security-guarantees__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-index-security-guarantees__main-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

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

  .page-index-security-guarantees__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  /* 按钮与按钮容器 */
  .page-index-security-guarantees__btn-primary,
  .page-index-security-guarantees__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-index-security-guarantees__hero-cta,
  .page-index-security-guarantees__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 15px;
  }

  /* 其他内容模块 */
  .page-index-security-guarantees__intro-section,
  .page-index-security-guarantees__features-section,
  .page-index-security-guarantees__technology-section,
  .page-index-security-guarantees__faq-section,
  .page-index-security-guarantees__cta-section {
    padding: 40px 0;
  }

  .page-index-security-guarantees__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-index-security-guarantees__paragraph {
    font-size: 0.95rem;
  }

  .page-index-security-guarantees__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-security-guarantees__feature-card {
    padding: 20px;
  }

  .page-index-security-guarantees__feature-image {
    height: 180px;
  }

  .page-index-security-guarantees__feature-title {
    font-size: 1.3rem;
  }

  .page-index-security-guarantees__tech-item {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-index-security-guarantees__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-index-security-guarantees__faq-toggle {
    font-size: 1.5rem;
  }

  .page-index-security-guarantees__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

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

  .page-index-security-guarantees__section,
  .page-index-security-guarantees__card,
  .page-index-security-guarantees__container,
  .page-index-security-guarantees__hero-image-wrapper,
  .page-index-security-guarantees__hero-content,
  .page-index-security-guarantees__technology-content,
  .page-index-security-guarantees__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}