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

/* Base styles for the page content */
.page-index-security-guarantees {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text on dark body background */
  background-color: #0a0a0a; /* Body background from shared.css */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Section */
.page-index-security-guarantees__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a; /* Dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-index-security-guarantees__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

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

/* Call to Action Button */
.page-index-security-guarantees__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}

.page-index-security-guarantees__btn-primary {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.4);
}

.page-index-security-guarantees__btn-primary:hover {
  background-color: #1e87b5; /* Darker shade of brand color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(38, 169, 224, 0.6);
}

.page-index-security-guarantees__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Brand color */
  border: 2px solid #26A9E0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-security-guarantees__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b5;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.page-index-security-guarantees__content-area {
  padding: 60px 0;
}

.page-index-security-guarantees__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for section titles */
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.page-index-security-guarantees__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-security-guarantees__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-index-security-guarantees__light-bg {
  background-color: #1a1a1a; /* Dark gray background for contrast sections */
  color: #ffffff;
}

.page-index-security-guarantees__highlight {
  color: #26A9E0;
  font-weight: bold;
}

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

.page-index-security-guarantees__list-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for items on dark background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-index-security-guarantees__list-item:hover {
  transform: translateY(-5px);
  background-color: rgba(38, 169, 224, 0.1);
}

.page-index-security-guarantees__list-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-index-security-guarantees__list-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-index-security-guarantees__link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-index-security-guarantees__link:hover {
  text-decoration: none;
  color: #1e87b5;
}

/* Image styles */
.page-index-security-guarantees__image-wrapper {
  text-align: center;
  margin: 40px auto;
}

.page-index-security-guarantees__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element for max-width and margin auto */
  margin: 0 auto; /* Center image */
}

/* Grid for cards */
.page-index-security-guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-security-guarantees__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff; /* Ensure light text on card */
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-index-security-guarantees__card:hover {
  transform: translateY(-5px);
  background-color: rgba(38, 169, 224, 0.1);
}

.page-index-security-guarantees__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-index-security-guarantees__card-description {
  font-size: 1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-index-security-guarantees__link-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.95em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}

/* FAQ Section */
.page-index-security-guarantees__faq-section {
  padding: 60px 0;
}

.page-index-security-guarantees__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-index-security-guarantees__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff; /* Light text */
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-index-security-guarantees__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0; /* Brand color for questions */
  background-color: rgba(255, 255, 255, 0.12); /* Slightly darker transparent white for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-index-security-guarantees__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-security-guarantees__faq-qtext {
  flex-grow: 1;
}

.page-index-security-guarantees__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff; /* White for toggle icon */
  transition: transform 0.2s ease;
}

.page-index-security-guarantees__faq-item[open] .page-index-security-guarantees__faq-toggle {
  transform: rotate(45deg);
}

.page-index-security-guarantees__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #f0f0f0; /* Light gray for answer text */
  background-color: rgba(255, 255, 255, 0.05); /* Lighter transparent white for answer background */
}

/* Final CTA Section */
.page-index-security-guarantees__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff;
}

.page-index-security-guarantees__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-security-guarantees__cta-title {
  font-size: 2.8em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-index-security-guarantees__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-security-guarantees__hero-title {
    font-size: 2.8em;
  }
  .page-index-security-guarantees__section-title {
    font-size: 2.2em;
  }
  .page-index-security-guarantees__cta-title {
    font-size: 2.4em;
  }
  .page-index-security-guarantees__feature-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-security-guarantees__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantees__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }
  .page-index-security-guarantees__hero-title {
    font-size: 2em;
  }
  .page-index-security-guarantees__hero-description {
    font-size: 1em;
  }

  .page-index-security-guarantees__container {
    padding: 0 15px;
  }

  .page-index-security-guarantees__content-area {
    padding: 40px 0;
  }
  .page-index-security-guarantees__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-security-guarantees__paragraph {
    font-size: 1em;
  }

  /* Images responsive */
  .page-index-security-guarantees img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Enforce min size for content images */
    min-height: 200px !important;
  }
  .page-index-security-guarantees__image-wrapper,
  .page-index-security-guarantees__section,
  .page-index-security-guarantees__card,
  .page-index-security-guarantees__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-index-security-guarantees__cta-button,
  .page-index-security-guarantees__btn-primary,
  .page-index-security-guarantees__btn-secondary,
  .page-index-security-guarantees a[class*="button"],
  .page-index-security-guarantees a[class*="btn"] {
    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-index-security-guarantees__cta-buttons,
  .page-index-security-guarantees__button-group,
  .page-index-security-guarantees__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-index-security-guarantees__cta-flex {
    flex-direction: column;
  }

  .page-index-security-guarantees__feature-list {
    grid-template-columns: 1fr;
  }
  .page-index-security-guarantees__grid {
    grid-template-columns: 1fr;
  }

  .page-index-security-guarantees__card-title {
    font-size: 1.5em;
  }
  .page-index-security-guarantees__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-index-security-guarantees__faq-answer {
    padding: 10px 20px 15px 20px;
  }
  .page-index-security-guarantees__cta-title {
    font-size: 1.8em;
  }
  .page-index-security-guarantees__cta-description {
    font-size: 1em;
  }
}