.page-resources-platform-security {
  color: #333333; /* Dark text for default light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-resources-platform-security {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header height */
  }
}

.page-resources-platform-security__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  text-align: center;
  color: #ffffff; /* White text for hero content over image */
  padding: 40px 20px;
  background-color: #0A192F; /* Fallback background color */
}

.page-resources-platform-security__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-platform-security__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-platform-security__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(10, 25, 47, 0.7); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-resources-platform-security__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

.page-resources-platform-security__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-platform-security__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-platform-security__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-platform-security__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content area */
}

.page-resources-platform-security__breadcrumbs {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 30px;
}

.page-resources-platform-security__breadcrumbs a {
  color: #0A192F;
  text-decoration: none;
}

.page-resources-platform-security__breadcrumbs a:hover {
  text-decoration: underline;
}

.page-resources-platform-security__section-title {
  font-size: 2.5em;
  color: #0A192F;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 15px;
}

.page-resources-platform-security__sub-section-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-platform-security__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-platform-security__image-full {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-platform-security__flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: center;
}

.page-resources-platform-security__flex-item {
  flex: 1 1 calc(50% - 20px); /* Two columns on larger screens */
  min-width: 300px; /* Minimum width for flex items */
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
}

.page-resources-platform-security__flex-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-resources-platform-security__item-title {
  font-size: 1.3em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-resources-platform-security__item-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-platform-security__blockquote {
  background-color: #f0f8ff;
  border-left: 5px solid #0A192F;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #0A192F;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-resources-platform-security__link {
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-platform-security__link:hover {
  text-decoration: underline;
}

.page-resources-platform-security__faq-item {
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-resources-platform-security__faq-question {
  font-size: 1.2em;
  color: #0A192F;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-platform-security__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-platform-security__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-platform-security__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-resources-platform-security__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-resources-platform-security__back-link-container {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px dashed #cccccc;
}

.page-resources-platform-security__back-link {
  display: inline-block;
  font-size: 1.1em;
  color: #0A192F;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #0A192F;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-platform-security__back-link:hover {
  background-color: #0A192F;
  color: #ffffff;
}

@media (max-width: 768px) {
  .page-resources-platform-security__hero-title {
    font-size: 2.2em;
  }

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

  .page-resources-platform-security__section-title {
    font-size: 2em;
  }

  .page-resources-platform-security__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-platform-security__flex-item {
    flex: 1 1 100%; /* Single column on mobile */
  }

  .page-resources-platform-security__content-area {
    padding: 20px 15px;
  }

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-resources-platform-security__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: contain; /* Adjust as needed */
  }
}

@media (max-width: 768px) {
  .page-resources-platform-security img {
    max-width: 100%;
    height: auto;
  }
}