.page-resources-security-guarantee {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #1a1a1a; /* Body background from shared.css */
  line-height: 1.6;
}

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

.page-resources-security-guarantee__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  padding: 80px 0;
  background: linear-gradient(135deg, #FF0000 0%, #000000 100%);
}

.page-resources-security-guarantee__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

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

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

.page-resources-security-guarantee__btn-primary {
  display: inline-block;
  background: #FF0000;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FF0000;
}

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

.page-resources-security-guarantee__content-area {
  padding: 60px 0;
  color: #f0f0f0; /* Light text for dark body background */
}

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

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

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

.page-resources-security-guarantee__feature-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-security-guarantee__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-security-guarantee__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-resources-security-guarantee__cta-section {
  text-align: center;
  background: linear-gradient(90deg, #000000 0%, #FF0000 100%);
  padding: 50px 20px;
  border-radius: 10px;
  margin: 50px auto;
  max-width: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-security-guarantee__cta-text {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-security-guarantee__faq-list {
  margin-top: 40px;
}

.page-resources-security-guarantee__faq-item {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.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;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-security-guarantee__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-security-guarantee__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FF0000;
}

.page-resources-security-guarantee__faq-item.active .page-resources-security-guarantee__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-security-guarantee__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
}

.page-resources-security-guarantee__faq-item.active .page-resources-security-guarantee__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-security-guarantee__hero-section {
    min-height: 450px;
    padding: 60px 0;
  }

  .page-resources-security-guarantee__hero-title {
    font-size: 2.5em;
  }

  .page-resources-security-guarantee__hero-description {
    font-size: 1em;
  }

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

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

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

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

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

  .page-resources-security-guarantee__cta-text {
    font-size: 1.4em;
  }

  .page-resources-security-guarantee__btn-primary {
    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;
  }

  .page-resources-security-guarantee__container,
  .page-resources-security-guarantee__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-security-guarantee img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-security-guarantee__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}