.page-index-security-guarantee {
  color: #333333; /* Dark text for light body background */
}

.page-index-security-guarantee__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Main color as background for hero section */
}

.page-index-security-guarantee__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

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

.page-index-security-guarantee__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 10;
}

.page-index-security-guarantee__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-security-guarantee__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.page-index-security-guarantee__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantee__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-security-guarantee__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-index-security-guarantee__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-security-guarantee__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-index-security-guarantee__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-security-guarantee__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-index-security-guarantee__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 30px;
  color: #333333;
}

.page-index-security-guarantee__introduction-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

.page-index-security-guarantee__features-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

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

.page-index-security-guarantee__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-security-guarantee__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-security-guarantee__feature-icon {
  width: 250px;
  height: auto;
  margin-bottom: 25px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-index-security-guarantee__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-security-guarantee__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  text-align: justify;
}

.page-index-security-guarantee__cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-index-security-guarantee__cta-section .page-index-security-guarantee__section-title {
  color: #FFFFFF;
}

.page-index-security-guarantee__cta-section .page-index-security-guarantee__section-title::after {
  background-color: #FCBC45;
}

.page-index-security-guarantee__cta-section .page-index-security-guarantee__text-content {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-security-guarantee__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-index-security-guarantee__button--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-security-guarantee__button--download:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-index-security-guarantee__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index-security-guarantee__faq-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-index-security-guarantee__faq-item:hover {
  background-color: #f0f0f0;
}

.page-index-security-guarantee__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-index-security-guarantee__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  display: none; /* Hidden by default, toggled by JS */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-security-guarantee__hero-title {
    font-size: 3em;
  }
  .page-index-security-guarantee__hero-description {
    font-size: 1.2em;
  }
  .page-index-security-guarantee__section-title {
    font-size: 2.2em;
  }
  .page-index-security-guarantee__feature-icon {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantee__hero-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .page-index-security-guarantee__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-index-security-guarantee__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-security-guarantee__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-security-guarantee__container {
    padding: 30px 15px;
  }
  .page-index-security-guarantee__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-index-security-guarantee__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-security-guarantee__feature-icon {
    width: 180px;
  }
  .page-index-security-guarantee__feature-title {
    font-size: 1.5em;
  }
  .page-index-security-guarantee__text-content, .page-index-security-guarantee__feature-description, .page-index-security-guarantee__faq-answer {
    font-size: 0.95em;
  }
  .page-index-security-guarantee__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area image resizing */
  .page-index-security-guarantee__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-index-security-guarantee__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-index-security-guarantee img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-index-security-guarantee__hero-title {
    font-size: 2em;
  }
  .page-index-security-guarantee__hero-description {
    font-size: 0.9em;
  }
  .page-index-security-guarantee__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
  .page-index-security-guarantee__section-title {
    font-size: 1.5em;
  }
  .page-index-security-guarantee__feature-title {
    font-size: 1.3em;
  }
  .page-index-security-guarantee__faq-question {
    font-size: 1.2em;
  }
}