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

/* Base Styles */
.page-index-security-guarantees {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from body, explicit for clarity */
}

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

.page-index-security-guarantees__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-security-guarantees__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-index-security-guarantees__section-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-index-security-guarantees__subsection-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  font-weight: 600;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-security-guarantees__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-index-security-guarantees__inline-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-index-security-guarantees__inline-link:hover {
  color: #EA7C07;
}

/* Hero Section */
.page-index-security-guarantees__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is extra */
  overflow: hidden;
  min-height: 600px;
}

.page-index-security-guarantees__hero-image-container {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-index-security-guarantees__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 1920px; /* Ensure it doesn't stretch too wide */
}

.page-index-security-guarantees__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-index-security-guarantees__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-security-guarantees__hero-description {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-security-guarantees__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-security-guarantees__btn-primary:hover {
  background-color: #EA7C07; /* Login color for hover */
  transform: translateY(-3px);
}

/* Content Layout */
.page-index-security-guarantees__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-index-security-guarantees__content-wrapper--reverse {
  flex-direction: row-reverse;
}

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

.page-index-security-guarantees__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-security-guarantees__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

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

.page-index-security-guarantees__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index-security-guarantees__card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent white */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-index-security-guarantees__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

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

.page-index-security-guarantees__card--transparent {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-security-guarantees__card--transparent:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* FAQ Section */
.page-index-security-guarantees__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-index-security-guarantees__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-security-guarantees__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-index-security-guarantees__faq-question::-webkit-details-marker {
  display: none;
}

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

.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;
}

.page-index-security-guarantees__faq-item[open] .page-index-security-guarantees__faq-toggle {
  content: '−';
}

.page-index-security-guarantees__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-security-guarantees__faq-answer p {
  margin-bottom: 0;
  color: #f0f0f0;
}

/* Bottom CTA */
.page-index-security-guarantees__cta-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-index-security-guarantees__tagline {
  font-size: 1.3em;
  font-weight: 500;
  color: #26A9E0;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-security-guarantees__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-index-security-guarantees__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-index-security-guarantees__image-content {
    margin-top: 30px;
  }

  .page-index-security-guarantees__section-title {
    font-size: 2.2em;
  }

  .page-index-security-guarantees__subsection-title {
    font-size: 1.7em;
  }
}

@media (max-width: 768px) {
  .page-index-security-guarantees__section {
    padding: 40px 0;
  }

  .page-index-security-guarantees__hero-section {
    min-height: 450px;
    padding-bottom: 40px;
  }

  .page-index-security-guarantees__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-index-security-guarantees__hero-description {
    font-size: 1em;
  }

  .page-index-security-guarantees__btn-primary {
    padding: 12px 25px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-index-security-guarantees__card {
    padding: 25px;
  }

  .page-index-security-guarantees__card-title {
    font-size: 1.2em;
  }

  .page-index-security-guarantees__text-block {
    font-size: 1em;
  }

  /* Image responsive */
  .page-index-security-guarantees img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-index-security-guarantees__section,
  .page-index-security-guarantees__card,
  .page-index-security-guarantees__container,
  .page-index-security-guarantees__content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-security-guarantees__hero-section {
    padding-top: 10px !important;
  }

  .page-index-security-guarantees__hero-image-container {
    margin-bottom: 20px;
  }

  .page-index-security-guarantees__hero-image {
    height: 250px; /* Adjust height for mobile hero */
    object-fit: cover;
    object-position: center;
  }

  .page-index-security-guarantees__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-index-security-guarantees__faq-answer {
    padding: 15px;
  }
}