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

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

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

.page-index-security-guarantee__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-index-security-guarantee__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-security-guarantee__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-index-security-guarantee__hero-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-security-guarantee__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-index-security-guarantee__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-security-guarantee__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-index-security-guarantee__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-security-guarantee__sub-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-security-guarantee__section-text {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-index-security-guarantee__dark-section {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

.page-index-security-guarantee__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-index-security-guarantee__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

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

.page-index-security-guarantee__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-index-security-guarantee__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-index-security-guarantee__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-security-guarantee__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 1px solid #2E7A4E; /* Border */
  list-style: none; /* For <details> */
  user-select: none;
}

.page-index-security-guarantee__faq-question::-webkit-details-marker {
  display: none; /* For <details> */
}

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

.page-index-security-guarantee__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-index-security-guarantee__faq-item[open] .page-index-security-guarantee__faq-toggle {
  transform: rotate(45deg);
}

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

.page-index-security-guarantee__faq-answer p {
  margin: 0;
  padding: 0;
}

.page-index-security-guarantee__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

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

.page-index-security-guarantee__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

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

.page-index-security-guarantee__btn-secondary:hover {
  background-color: #11A84E;
  color: #F2FFF6;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-index-security-guarantee__content-grid {
    grid-template-columns: 1fr;
  }

  .page-index-security-guarantee__content-grid--reverse {
    grid-template-columns: 1fr;
  }

  .page-index-security-guarantee__image-block {
    order: -1; /* Image appears first on smaller screens for reverse grid */
  }

  .page-index-security-guarantee__hero-title {
    font-size: clamp(1.8em, 7vw, 2.8em);
  }

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

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

@media (max-width: 768px) {
  .page-index-security-guarantee {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-security-guarantee__hero-content {
    padding: 20px;
  }

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

  .page-index-security-guarantee__sub-title {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-index-security-guarantee__section-text {
    font-size: 1em;
  }

  /* Images responsive */
  .page-index-security-guarantee img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Containers for images */
  .page-index-security-guarantee__hero-image-wrapper,
  .page-index-security-guarantee__image-block {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* Buttons responsive */
  .page-index-security-guarantee__cta-button,
  .page-index-security-guarantee__btn-primary,
  .page-index-security-guarantee__btn-secondary,
  .page-index-security-guarantee a[class*="button"],
  .page-index-security-guarantee 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;
    padding-right: 15px;
  }
  
  /* Button containers responsive */
  .page-index-security-guarantee__cta-buttons,
  .page-index-security-guarantee__button-group,
  .page-index-security-guarantee__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .page-index-security-guarantee__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-index-security-guarantee__intro-section,
  .page-index-security-guarantee__tech-security-section,
  .page-index-security-guarantee__data-privacy-section,
  .page-index-security-guarantee__fair-play-section,
  .page-index-security-guarantee__transactions-section,
  .page-index-security-guarantee__responsible-gaming-section,
  .page-index-security-guarantee__support-section,
  .page-index-security-guarantee__licensing-section,
  .page-index-security-guarantee__faq-section,
  .page-index-security-guarantee__cta-section {
    padding: 30px 0;
  }

  .page-index-security-guarantee__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-security-guarantee__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-index-security-guarantee__faq-answer {
    padding: 15px 20px;
  }
}

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

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

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

/* Color Contrast Fixes */
.page-index-security-guarantee__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-index-security-guarantee__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-index-security-guarantee__card {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-index-security-guarantee__text-block p, .page-index-security-guarantee__text-block li {
  color: #A7D9B8;
}

.page-index-security-guarantee__faq-question {
  background-color: #11A84E; /* Main color for question background */
  color: #F2FFF6; /* Light text for question */
}

.page-index-security-guarantee__faq-answer {
  background-color: #11271B; /* Card BG for answer background */
  color: #A7D9B8; /* Secondary text for answer */
}