.page-index-security-guarantee {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-index-security-guarantee__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3E6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-index-security-guarantee__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 35, 66, 0) 70%);
  opacity: 0.3;
  animation: page-index-security-guarantee__pulse 15s infinite alternate;
}

@keyframes page-index-security-guarantee__pulse {
  0% { transform: scale(0.8); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

.page-index-security-guarantee__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-security-guarantee__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light text for subtitle */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-security-guarantee__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-security-guarantee__cta-button:hover {
  background-color: #E6B800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-security-guarantee__content-section {
  padding: 60px 0;
  background-color: #0A2342; /* Main dark blue background */
}

.page-index-security-guarantee__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  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: #FFD700;
  border-radius: 2px;
}

.page-index-security-guarantee__sub-section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-index-security-guarantee__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light text for paragraphs */
}

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

.page-index-security-guarantee__feature-list li {
  background-color: #1A3E6D; /* Slightly lighter dark blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.05em;
  color: #E0E0E0;
  position: relative;
  padding-left: 50px;
}

.page-index-security-guarantee__feature-list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-index-security-guarantee__feature-list li strong {
  color: #FFD700;
}

.page-index-security-guarantee__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-index-security-guarantee__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-index-security-guarantee__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-index-security-guarantee__benefit-list li {
  background-color: #1A3E6D; /* Lighter dark blue for benefits */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.page-index-security-guarantee__benefit-list li::before {
  content: '★'; /* Star icon for benefits */
  color: #FFD700;
  font-size: 1.8em;
  display: block;
  margin-bottom: 10px;
}

.page-index-security-guarantee__cta-block {
  background-color: #1A3E6D; /* Lighter dark blue for CTA block */
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantee__cta-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for CTA title */
  margin-bottom: 20px;
}

.page-index-security-guarantee__cta-text {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-security-guarantee__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin: 10px;
}

.page-index-security-guarantee__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  margin: 10px;
}

.page-index-security-guarantee__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-index-security-guarantee .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-security-guarantee__hero-title {
    font-size: 2.5em;
  }

  .page-index-security-guarantee__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-security-guarantee__section-title {
    font-size: 2em;
  }

  .page-index-security-guarantee__sub-section-title {
    font-size: 1.8em;
  }

  .page-index-security-guarantee__cta-title {
    font-size: 2em;
  }

  .page-index-security-guarantee__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-security-guarantee__cta-button--large {
    font-size: 1.1em;
  }

  .page-index-security-guarantee__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-index-security-guarantee__cta-block {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-index-security-guarantee__hero-title {
    font-size: 2em;
  }

  .page-index-security-guarantee__hero-subtitle {
    font-size: 1em;
  }

  .page-index-security-guarantee__section-title {
    font-size: 1.8em;
  }

  .page-index-security-guarantee__sub-section-title {
    font-size: 1.5em;
  }

  .page-index-security-guarantee__cta-title {
    font-size: 1.8em;
  }

  .page-index-security-guarantee__cta-button {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-index-security-guarantee__cta-button--large,
  .page-index-security-guarantee__cta-button--secondary {
    display: block;
    margin: 10px auto;
  }
  .page-index-security-guarantee__feature-list li {
    padding-left: 15px;
  }
  .page-index-security-guarantee__feature-list li::before {
    left: 0;
    top: 15px;
    transform: none;
  }
}