.page-resources-security-guarantee {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from shared, but for specific sections */
}

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

.page-resources-security-guarantee__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  color: #ffffff;
}

.page-resources-security-guarantee__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-resources-security-guarantee__hero-section .page-resources-security-guarantee__container {
  position: relative;
  z-index: 2;
}

.page-resources-security-guarantee__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-security-guarantee__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-security-guarantee__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-security-guarantee__btn-primary,
.page-resources-security-guarantee__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-security-guarantee__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-security-guarantee__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

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

.page-resources-security-guarantee__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-security-guarantee__content-section {
  padding: 60px 0;
}

.page-resources-security-guarantee__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-security-guarantee__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-security-guarantee__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-resources-security-guarantee__light-bg .page-resources-security-guarantee__section-title {
  color: #26A9E0;
}

.page-resources-security-guarantee__dark-bg .page-resources-security-guarantee__section-title {
  color: #ffffff;
}

.page-resources-security-guarantee__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-security-guarantee__features-section {
  padding: 80px 0;
}

.page-resources-security-guarantee__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-security-guarantee__grid--two-cols {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.page-resources-security-guarantee__feature-card,
.page-resources-security-guarantee__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-resources-security-guarantee__feature-card:hover,
.page-resources-security-guarantee__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-security-guarantee__feature-image,
.page-resources-security-guarantee__card-image,
.page-resources-security-guarantee__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-security-guarantee__feature-card .page-resources-security-guarantee__feature-image {
  margin-left: auto;
  margin-right: auto;
}

.page-resources-security-guarantee__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-resources-security-guarantee__card-description {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-resources-security-guarantee__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #26A9E0;
}

.page-resources-security-guarantee__text-block {
  padding: 20px;
}

.page-resources-security-guarantee__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-resources-security-guarantee__faq-section {
  padding: 80px 0;
}

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

.page-resources-security-guarantee__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-security-guarantee__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  user-select: none;
}

.page-resources-security-guarantee__faq-item[open] > .page-resources-security-guarantee__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-security-guarantee__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-security-guarantee__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-resources-security-guarantee__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-security-guarantee__faq-answer p {
  margin-bottom: 0;
}

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

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

  .page-resources-security-guarantee__grid--two-cols {
    grid-template-columns: 1fr;
  }

  .page-resources-security-guarantee__grid--reverse-mobile {
    flex-direction: column-reverse;
  }

  .page-resources-security-guarantee__image-wrapper {
    order: -1; /* Move image above text on mobile for reverse layout */
  }
}

@media (max-width: 768px) {
  .page-resources-security-guarantee__hero-section {
    height: auto;
    min-height: 450px;
    padding: 100px 20px 60px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-security-guarantee__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-resources-security-guarantee__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-security-guarantee__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-security-guarantee__btn-primary,
  .page-resources-security-guarantee__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-security-guarantee__content-section,
  .page-resources-security-guarantee__features-section,
  .page-resources-security-guarantee__account-protection-section,
  .page-resources-security-guarantee__faq-section,
  .page-resources-security-guarantee__cta-section {
    padding: 40px 0;
  }

  .page-resources-security-guarantee__container {
    padding: 0 15px;
  }

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

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

  .page-resources-security-guarantee__paragraph {
    font-size: 0.95em;
  }

  .page-resources-security-guarantee__feature-card,
  .page-resources-security-guarantee__card {
    padding: 20px;
  }

  .page-resources-security-guarantee__feature-image,
  .page-resources-security-guarantee__card-image,
  .page-resources-security-guarantee__image {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    min-width: 200px !important;
    min-height: 200px !important;
    object-fit: cover;
  }

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

  .page-resources-security-guarantee__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-resources-security-guarantee__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-security-guarantee__text-block,
  .page-resources-security-guarantee__image-wrapper,
  .page-resources-security-guarantee__card,
  .page-resources-security-guarantee__feature-card,
  .page-resources-security-guarantee__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Ensure all content containers have padding for mobile */
  .page-resources-security-guarantee__hero-section .page-resources-security-guarantee__container,
  .page-resources-security-guarantee__content-section .page-resources-security-guarantee__container,
  .page-resources-security-guarantee__features-section .page-resources-security-guarantee__container,
  .page-resources-security-guarantee__account-protection-section .page-resources-security-guarantee__container,
  .page-resources-security-guarantee__faq-section .page-resources-security-guarantee__container,
  .page-resources-security-guarantee__cta-section .page-resources-security-guarantee__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}