.page-security-guarantee-account-protection {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-security-guarantee-account-protection__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-security-guarantee-account-protection__title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-security-guarantee-account-protection__subtitle {
  font-size: 1.2em;
  color: #C0C0C0; /* Lighter grey for subtitle */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-security-guarantee-account-protection__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  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-security-guarantee-account-protection__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-security-guarantee-account-protection__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

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

.page-security-guarantee-account-protection__section--alt {
  background-color: #2A313C; /* Slightly lighter dark background for alternating sections */
}

.page-security-guarantee-account-protection__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-security-guarantee-account-protection__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-security-guarantee-account-protection__section p {
  font-size: 1em;
  margin-bottom: 20px;
  color: #E5E5E5;
}

.page-security-guarantee-account-protection__section h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-security-guarantee-account-protection__list,
.page-security-guarantee-account-protection__ordered-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #C0C0C0;
}

.page-security-guarantee-account-protection__ordered-list {
  list-style: decimal;
}

.page-security-guarantee-account-protection__list li,
.page-security-guarantee-account-protection__ordered-list li {
  margin-bottom: 10px;
}

.page-security-guarantee-account-protection__article {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 20px;
  background-color: #1A202C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-security-guarantee-account-protection__article:nth-child(odd) {
  background-color: #2A313C;
}

.page-security-guarantee-account-protection__article h3 {
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-security-guarantee-account-protection__article p,
.page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__list,
.page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__ordered-list {
  flex-basis: calc(65% - 20px);
  margin-right: 20px;
}

.page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image-wrapper {
  flex-basis: 35%;
  text-align: center;
  margin-top: 10px;
}

.page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image-wrapper--right {
  order: 2;
  margin-left: 20px;
  margin-right: 0;
}

.page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image-wrapper--left {
  order: 1;
  margin-right: 20px;
  margin-left: 0;
}

.page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-security-guarantee-account-protection__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-security-guarantee-account-protection__image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-security-guarantee-account-protection__faq {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-security-guarantee-account-protection__faq-item {
  background-color: #2A313C;
  border: 1px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-security-guarantee-account-protection__faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-security-guarantee-account-protection__faq-answer {
  color: #C0C0C0;
  font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-security-guarantee-account-protection__title {
    font-size: 2.2em;
  }
  .page-security-guarantee-account-protection__section-title {
    font-size: 1.8em;
  }
  .page-security-guarantee-account-protection__article {
    flex-direction: column;
    align-items: center;
  }
  .page-security-guarantee-account-protection__article p,
  .page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__list,
  .page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__ordered-list {
    flex-basis: 100%;
    margin-right: 0;
  }
  .page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image-wrapper {
    flex-basis: 100%;
    order: initial;
    margin: 20px 0;
  }
  .page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image-wrapper--right,
  .page-security-guarantee-account-protection__article .page-security-guarantee-account-protection__image-wrapper--left {
    margin-left: 0;
    margin-right: 0;
  }
  .page-security-guarantee-account-protection__image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-security-guarantee-account-protection__hero {
    padding: 60px 0;
  }
  .page-security-guarantee-account-protection__title {
    font-size: 1.8em;
  }
  .page-security-guarantee-account-protection__subtitle {
    font-size: 1em;
  }
  .page-security-guarantee-account-protection__section {
    padding: 40px 0;
  }
  .page-security-guarantee-account-protection__section-title {
    font-size: 1.6em;
  }
  .page-security-guarantee-account-protection__section h3 {
    font-size: 1.4em;
  }
  .page-security-guarantee-account-protection__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-security-guarantee-account-protection__hero {
    padding: 40px 0;
  }
  .page-security-guarantee-account-protection__title {
    font-size: 1.5em;
  }
  .page-security-guarantee-account-protection__subtitle {
    font-size: 0.9em;
  }
  .page-security-guarantee-account-protection__section {
    padding: 30px 0;
  }
  .page-security-guarantee-account-protection__section-title {
    font-size: 1.4em;
  }
  .page-security-guarantee-account-protection__section h3 {
    font-size: 1.2em;
  }
  .page-security-guarantee-account-protection__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-security-guarantee-account-protection__list,
  .page-security-guarantee-account-protection__ordered-list {
    margin-left: 15px;
  }
  .page-security-guarantee-account-protection__faq-question {
    font-size: 1.2em;
  }
}