.page-index-security-guarantee {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
}

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

.page-index-security-guarantee__hero-section {
  background: linear-gradient(135deg, #1A1A2E, #3D0000); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-index-security-guarantee__hero-title {
  font-size: 3.2em;
  color: #E94560; /* Accent color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-security-guarantee__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-index-security-guarantee__section {
  padding: 60px 0;
  background-color: #282844; /* Slightly lighter dark background for sections */
  color: #E0E0E0;
}

.page-index-security-guarantee__section--dark {
  background-color: #1A1A2E;
}

.page-index-security-guarantee__section-title {
  font-size: 2.5em;
  color: #E94560; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-index-security-guarantee__sub-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-index-security-guarantee__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-index-security-guarantee__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-index-security-guarantee__grid-layout--reverse {
  direction: rtl;
}

.page-index-security-guarantee__grid-layout--reverse > *:nth-child(even) {
  direction: ltr;
}

.page-index-security-guarantee__grid-layout--reverse > *:nth-child(odd) {
  direction: ltr;
}

.page-index-security-guarantee__image-wrapper {
  text-align: center;
}

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

.page-index-security-guarantee__image--small {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

.page-index-security-guarantee__feature-list,
.page-index-security-guarantee__license-list,
.page-index-security-guarantee__benefits-list,
.page-index-security-guarantee__app-features {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.page-index-security-guarantee__feature-list li,
.page-index-security-guarantee__license-list li,
.page-index-security-guarantee__benefits-list li,
.page-index-security-guarantee__app-features li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-index-security-guarantee__feature-list li::before,
.page-index-security-guarantee__license-list li::before,
.page-index-security-guarantee__benefits-list li::before,
.page-index-security-guarantee__app-features li::before {
  content: '✓';
  color: #E94560;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-index-security-guarantee__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  margin-top: 30px;
}

.page-index-security-guarantee__btn--primary {
  background-color: #E94560;
  color: #FFFFFF;
  border: 2px solid #E94560;
}

.page-index-security-guarantee__btn--primary:hover {
  background-color: #C73B50;
  transform: translateY(-2px);
}

.page-index-security-guarantee__btn--secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.page-index-security-guarantee__btn--secondary:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-index-security-guarantee__centered-content {
  text-align: center;
}

.page-index-security-guarantee__contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.page-index-security-guarantee__contact-methods li {
  font-size: 1.2em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.page-index-security-guarantee__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #E94560; /* Placeholder for icons */
  border-radius: 50%;
  margin-right: 10px;
  /* In a real scenario, these would be SVG or font icons */
}

.page-index-security-guarantee__icon--chat { /* Example for specific icon styling */ }
.page-index-security-guarantee__icon--email { /* Example for specific icon styling */ }
.page-index-security-guarantee__icon--phone { /* Example for specific icon styling */ }

.page-index-security-guarantee__cta-section {
  background: linear-gradient(135deg, #1A1A2E, #282844);
}

.page-index-security-guarantee__app-download {
  background-color: #1A1A2E;
}

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

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

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

  .page-index-security-guarantee__grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-index-security-guarantee__grid-layout--reverse {
    direction: ltr; /* Reset for mobile */
  }

  .page-index-security-guarantee__grid-item {
    text-align: center;
  }

  .page-index-security-guarantee__contact-methods {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantee__hero-section,
  .page-index-security-guarantee__section {
    padding: 60px 0;
  }

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

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

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

  .page-index-security-guarantee__text-content {
    font-size: 1em;
  }

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