/* style/index-security-guarantee.css */

/* Base styles for the page content, ensuring contrast with default light body background */
.page-index-security-guarantee {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-index-security-guarantee__hero-section {
  position: relative;
  width: 100%; /* Block element, no need for width: 100% */
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-index-security-guarantee__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(44, 62, 80, 0.7); /* Auxiliary color with transparency */
  border-radius: 10px;
}

.page-index-security-guarantee__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-security-guarantee__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-security-guarantee__hero-cta-button,
.page-index-security-guarantee__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #2C3E50; /* Auxiliary color for contrast */
  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;
  min-width: 200px;
  text-align: center;
}

.page-index-security-guarantee__hero-cta-button:hover,
.page-index-security-guarantee__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-index-security-guarantee__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-index-security-guarantee__section-title {
  font-size: 2.5em;
  color: #2C3E50; /* Auxiliary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-security-guarantee__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Primary color */
  margin: 10px auto 0;
}

.page-index-security-guarantee__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-security-guarantee__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-security-guarantee__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-security-guarantee__card:hover {
  transform: translateY(-5px);
}

.page-index-security-guarantee__card-image {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  /* No filter property to change image color */
}

.page-index-security-guarantee__card-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-index-security-guarantee__card-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-security-guarantee__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-security-guarantee__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-security-guarantee__list-title {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 10px;
}

.page-index-security-guarantee__list-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-security-guarantee__cta-section {
  text-align: center;
  margin-top: 50px;
}

.page-index-security-guarantee__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-security-guarantee__flex-content {
  flex: 1;
}

.page-index-security-guarantee__flex-image-container {
  flex: 1;
  text-align: center;
}

.page-index-security-guarantee__flex-image {
  width: 600px; /* Display width */
  height: 450px; /* Display height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* No filter property to change image color */
}

.page-index-security-guarantee__sub-title {
  font-size: 1.8em;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-security-guarantee__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-security-guarantee__feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-security-guarantee__feature-card:hover {
  transform: translateY(-5px);
}

.page-index-security-guarantee__feature-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-index-security-guarantee__feature-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-security-guarantee__image-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-index-security-guarantee__main-image {
  width: 600px; /* Display width */
  height: 450px; /* Display height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  /* No filter property to change image color */
}

.page-index-security-guarantee__compliance-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-security-guarantee__compliance-item {
  background-color: #f9f9f9;
  border-bottom: 4px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-index-security-guarantee__compliance-title {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 10px;
}

.page-index-security-guarantee__compliance-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-security-guarantee__image-center {
  text-align: center;
  margin-top: 50px;
}

.page-index-security-guarantee__support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-security-guarantee__support-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-security-guarantee__support-item:hover {
  transform: translateY(-5px);
}

.page-index-security-guarantee__support-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-index-security-guarantee__support-description {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-index-security-guarantee__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}

.page-index-security-guarantee__faq-question {
  font-size: 1.3em;
  color: #2C3E50;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-security-guarantee__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-security-guarantee__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-security-guarantee__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 0px;
  text-align: justify;
}

.page-index-security-guarantee__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 10px 0px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-security-guarantee__hero-title {
    font-size: 2.8em;
  }
  .page-index-security-guarantee__section-title {
    font-size: 2em;
  }
  .page-index-security-guarantee__flex-container {
    flex-direction: column;
  }
  .page-index-security-guarantee__flex-image,
  .page-index-security-guarantee__main-image,
  .page-index-security-guarantee__card-image {
    width: 100%;
    height: auto; /* Ensure images are responsive */
    max-width: 600px; /* Max width for larger screens */
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantee__hero-title {
    font-size: 2em;
  }
  .page-index-security-guarantee__hero-description {
    font-size: 1em;
  }
  .page-index-security-guarantee__section-title {
    font-size: 1.8em;
  }
  .page-index-security-guarantee__sub-title,
  .page-index-security-guarantee__card-title,
  .page-index-security-guarantee__list-title,
  .page-index-security-guarantee__feature-title,
  .page-index-security-guarantee__compliance-title,
  .page-index-security-guarantee__support-title {
    font-size: 1.4em;
  }
  .page-index-security-guarantee__content-area {
    padding: 40px 15px;
  }
  .page-index-security-guarantee__card-grid,
  .page-index-security-guarantee__feature-grid,
  .page-index-security-guarantee__compliance-list,
  .page-index-security-guarantee__support-features {
    grid-template-columns: 1fr;
  }
  .page-index-security-guarantee__hero-cta-button,
  .page-index-security-guarantee__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-index-security-guarantee img {
    max-width: 100%;
    height: auto;
    /* No filter property to change image color */
  }
  /* Specific override for image minimum size if needed, but max-width: 100% should be sufficient */
  .page-index-security-guarantee__flex-image,
  .page-index-security-guarantee__main-image,
  .page-index-security-guarantee__card-image {
    min-width: 200px;
    min-height: 200px;
  }
  .page-index-security-guarantee__hero-section {
    min-height: 400px;
  }
}