.page-security-guarantee-regulatory-compliance {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-security-guarantee-regulatory-compliance__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-security-guarantee-regulatory-compliance__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-security-guarantee-regulatory-compliance__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.page-security-guarantee-regulatory-compliance__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(26, 32, 44, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.page-security-guarantee-regulatory-compliance__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-security-guarantee-regulatory-compliance__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e5dfd3;
  position: relative;
  z-index: 1;
}

.page-security-guarantee-regulatory-compliance__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  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;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-security-guarantee-regulatory-compliance__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-security-guarantee-regulatory-compliance__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-security-guarantee-regulatory-compliance__section--alt {
  background-color: #2a3340;
}

.page-security-guarantee-regulatory-compliance__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-security-guarantee-regulatory-compliance__section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-security-guarantee-regulatory-compliance__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-security-guarantee-regulatory-compliance__list li {
  background-color: #2a3340;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e5dfd3;
}

.page-security-guarantee-regulatory-compliance__list li strong {
  color: #FFD700;
}

.page-security-guarantee-regulatory-compliance__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-security-guarantee-regulatory-compliance__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-security-guarantee-regulatory-compliance__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-security-guarantee-regulatory-compliance__image:hover {
  transform: scale(1.02);
}

.page-security-guarantee-regulatory-compliance__cta-button--bottom {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-security-guarantee-regulatory-compliance__section--faq {
  padding-bottom: 80px;
}

.page-security-guarantee-regulatory-compliance__faq-item {
  background-color: #1A202C;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: background-color 0.3s ease;
}

.page-security-guarantee-regulatory-compliance__faq-item:hover {
  background-color: #2a3340;
}

.page-security-guarantee-regulatory-compliance__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-security-guarantee-regulatory-compliance__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-security-guarantee-regulatory-compliance__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-security-guarantee-regulatory-compliance__faq-answer {
  font-size: 1.0em;
  color: #e5dfd3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
}

.page-security-guarantee-regulatory-compliance__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-security-guarantee-regulatory-compliance__title {
    font-size: 2.2em;
  }

  .page-security-guarantee-regulatory-compliance__subtitle {
    font-size: 1em;
  }

  .page-security-guarantee-regulatory-compliance__section-title {
    font-size: 1.8em;
  }

  .page-security-guarantee-regulatory-compliance__section {
    padding: 40px 0;
  }

  .page-security-guarantee-regulatory-compliance__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-security-guarantee-regulatory-compliance__list li {
    padding: 12px 15px;
  }

  .page-security-guarantee-regulatory-compliance__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-security-guarantee-regulatory-compliance__title {
    font-size: 1.8em;
  }

  .page-security-guarantee-regulatory-compliance__subtitle {
    font-size: 0.9em;
  }

  .page-security-guarantee-regulatory-compliance__section-title {
    font-size: 1.6em;
  }

  .page-security-guarantee-regulatory-compliance__hero-section {
    padding: 60px 0;
  }

  .page-security-guarantee-regulatory-compliance__cta-button {
    width: 100%;
    max-width: 250px;
  }
}