.page-resources-platform-security-privacy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--secondary-color, #FFFFFF);
}

.page-resources-platform-security-privacy__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #26A9E0;
  padding-top: var(--header-offset, 120px);
}

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

.page-resources-platform-security-privacy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.page-resources-platform-security-privacy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-platform-security-privacy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-resources-platform-security-privacy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-platform-security-privacy__cta-buttons--bottom {
  margin-top: 50px;
}

.page-resources-platform-security-privacy__btn-primary,
.page-resources-platform-security-privacy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-resources-platform-security-privacy__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-resources-platform-security-privacy__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-platform-security-privacy__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-resources-platform-security-privacy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* Explicitly light background for content */
  color: #333333;
}

.page-resources-platform-security-privacy__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-platform-security-privacy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-platform-security-privacy__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-resources-platform-security-privacy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-platform-security-privacy__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-platform-security-privacy__list-heading {
  color: #26A9E0;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-platform-security-privacy__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-platform-security-privacy__faq-container {
  margin-top: 40px;
}

.page-resources-platform-security-privacy__faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-platform-security-privacy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
  color: #333333;
}

.page-resources-platform-security-privacy__faq-question:hover {
  background-color: #ebebeb;
}

.page-resources-platform-security-privacy__faq-title {
  margin: 0;
  font-size: 1.2em;
  color: #26A9E0;
}

.page-resources-platform-security-privacy__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

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

.page-resources-platform-security-privacy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #ffffff;
  color: #555555;
}

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

/* Ensure image color filters are not used */
.page-resources-platform-security-privacy img {
  filter: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-platform-security-privacy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-platform-security-privacy__hero-section {
    padding: 60px 15px;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-resources-platform-security-privacy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-resources-platform-security-privacy__btn-primary,
  .page-resources-platform-security-privacy__btn-secondary,
  .page-resources-platform-security-privacy a[class*="button"],
  .page-resources-platform-security-privacy 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-platform-security-privacy__content-area {
    padding: 40px 15px;
  }

  .page-resources-platform-security-privacy__section-title {
    font-size: 1.8em;
  }

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

  .page-resources-platform-security-privacy__list-item {
    padding: 15px;
  }

  .page-resources-platform-security-privacy__list-heading {
    font-size: 1.3em;
  }

  .page-resources-platform-security-privacy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

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

  .page-resources-platform-security-privacy__video-section,
  .page-resources-platform-security-privacy__video-container,
  .page-resources-platform-security-privacy__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-platform-security-privacy__faq-question {
    padding: 15px;
  }

  .page-resources-platform-security-privacy__faq-title {
    font-size: 1em;
  }

  .page-resources-platform-security-privacy__faq-answer {
    padding: 15px;
  }
}