/* style/resources-security-guarantees.css */
.page-resources-security-guarantees {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure main content background matches body if not overridden */
}

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

.page-resources-security-guarantees__dark-bg {
  background-color: #000000; /* Dark background as per body */
  color: #ffffff; /* Light text for dark background */
}

.page-resources-security-guarantees__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #ffffff; /* Light text for dark background */
}

.page-resources-security-guarantees__text-center {
  text-align: center;
}

.page-resources-security-guarantees__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Adjusted padding-top for header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  min-height: 600px;
  text-align: center;
}

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

.page-resources-security-guarantees__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-security-guarantees__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-security-guarantees__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-security-guarantees__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  padding-top: 40px;
}

.page-resources-security-guarantees__sub-title {
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #26A9E0;
}

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

.page-resources-security-guarantees__btn-primary,
.page-resources-security-guarantees__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-resources-security-guarantees__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-resources-security-guarantees__large-cta {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

.page-resources-security-guarantees__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px; /* Ensure cards have minimum height for content */
}

.page-resources-security-guarantees__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Min size for card images */
  min-height: 150px;
}

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

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

.page-resources-security-guarantees__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-security-guarantees__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #26A9E0;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-resources-security-guarantees__list-item strong {
  color: #26A9E0;
}

.page-resources-security-guarantees__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-security-guarantees__image-left {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-security-guarantees__image-right {
  float: right;
  margin-left: 25px;
  margin-bottom: 15px;
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-security-guarantees__transaction-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  clear: both;
}

.page-resources-security-guarantees__transaction-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-resources-security-guarantees__transaction-item .page-resources-security-guarantees__text-content {
  flex: 1;
  padding: 0 20px;
}

.page-resources-security-guarantees__video-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-security-guarantees__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
}

.page-resources-security-guarantees__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.page-resources-security-guarantees__video-cta {
  margin-top: 30px;
}

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

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

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

.page-resources-security-guarantees__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-resources-security-guarantees__faq-question:hover {
  background-color: #1a7fb0;
}

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

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

.page-resources-security-guarantees__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  font-size: 1.05em;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

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

.page-resources-security-guarantees__cta-section {
  padding: 80px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-security-guarantees__hero-title {
    font-size: 3em;
  }
  .page-resources-security-guarantees__section-title {
    font-size: 2em;
  }
  .page-resources-security-guarantees__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-security-guarantees__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    min-height: 450px;
  }
}