/* style/resources-security-trust.css */
.page-resources-security-trust {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from shared.css, explicitly set for consistency */
}

.page-resources-security-trust__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-security-trust__dark-bg {
  background-color: #001f3f;
  color: #ffffff;
}

.page-resources-security-trust__light-bg {
  background-color: #1a3a5e; /* Slightly lighter dark blue for contrast */
  color: #ffffff;
}

.page-resources-security-trust__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-resources-security-trust__hero-section .page-resources-security-trust__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-resources-security-trust__hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

.page-resources-security-trust__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

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

.page-resources-security-trust__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-security-trust__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-resources-security-trust__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-security-trust__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-resources-security-trust__card {
  background-color: #2a4a6e; /* Card background, ensure contrast with text */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

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

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

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

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

.page-resources-security-trust__list-item {
  background-color: #2a4a6e; /* List item background */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-security-trust__list-item strong {
  color: #FFD700;
  margin-right: 8px;
}

.page-resources-security-trust__btn-primary,
.page-resources-security-trust__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word; /* Allow button text to break words */
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-security-trust__btn-primary {
  background-color: #FFD700;
  color: #001f3f;
  border: 2px solid #FFD700;
}

.page-resources-security-trust__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-security-trust__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-security-trust__btn-secondary:hover {
  background-color: #FFD700;
  color: #001f3f;
}

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

.page-resources-security-trust__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-resources-security-trust__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-security-trust__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

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

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

.page-resources-security-trust__review-card {
  background-color: #2a4a6e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
}

.page-resources-security-trust__review-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-security-trust__reviewer {
  font-weight: bold;
  color: #FFD700;
  font-size: 1em;
}

.page-resources-security-trust__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-security-trust__faq-item {
  background-color: #2a4a6e;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-security-trust__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #001f3f;
  transition: background-color 0.3s ease;
}

.page-resources-security-trust__faq-question:hover {
  background-color: #002a50;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-security-trust__hero-title {
    font-size: 2.8em;
  }

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

  .page-resources-security-trust__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-security-trust {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-security-trust__hero-section .page-resources-security-trust__container {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-security-trust__hero-title {
    font-size: 2.2em;
  }

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

  .page-resources-security-trust__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-security-trust__subsection-title {
    font-size: 1.4em;
  }

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

  .page-resources-security-trust__cards-grid,
  .page-resources-security-trust__review-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-security-trust__card,
  .page-resources-security-trust__review-card {
    padding: 20px;
  }

  .page-resources-security-trust__card-image {
    max-width: 100%;
  }

  .page-resources-security-trust__list-item {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-resources-security-trust__btn-primary,
  .page-resources-security-trust__btn-secondary,
  .page-resources-security-trust a[class*="button"],
  .page-resources-security-trust 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-resources-security-trust__cta-buttons,
  .page-resources-security-trust__button-group,
  .page-resources-security-trust__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;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-resources-security-trust img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-security-trust__section,
  .page-resources-security-trust__card,
  .page-resources-security-trust__container,
  .page-resources-security-trust__video-section,
  .page-resources-security-trust__video-container,
  .page-resources-security-trust__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-security-trust__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-security-trust video,
  .page-resources-security-trust__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-security-trust__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-security-trust__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-security-trust__hero-title {
    font-size: 1.8em;
  }

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

  .page-resources-security-trust__btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}