.page-resources-99oke-security-measures {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #1a1a2e; /* Inherited from shared, ensuring contrast */
}

.page-resources-99oke-security-measures__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #007bff; /* Primary brand color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-99oke-security-measures__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-resources-99oke-security-measures__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-99oke-security-measures__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-99oke-security-measures__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-99oke-security-measures__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.8);
}

.page-resources-99oke-security-measures__section {
  padding: 60px 20px;
  background-color: #1a1a2e; /* Dark background */
  color: #f0f0f0; /* Light text */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-99oke-security-measures__content-area {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-99oke-security-measures__section-title {
  font-size: 2.2em;
  color: #ffc107; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-99oke-security-measures__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #007bff;
  border-radius: 2px;
}

.page-resources-99oke-security-measures__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-99oke-security-measures__image-container {
  text-align: center;
  margin: 40px 0;
}

.page-resources-99oke-security-measures__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
}

.page-resources-99oke-security-measures__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-99oke-security-measures__btn-primary,
.page-resources-99oke-security-measures__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-99oke-security-measures__btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #1a1a2e; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-resources-99oke-security-measures__btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-99oke-security-measures__btn-secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color */
  border: 2px solid #ffc107;
}

.page-resources-99oke-security-measures__btn-secondary:hover {
  background-color: #ffc107;
  color: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-99oke-security-measures__faq-section {
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px;
}

.page-resources-99oke-security-measures__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-resources-99oke-security-measures__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

.page-resources-99oke-security-measures__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #f0f0f0;
}

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

.page-resources-99oke-security-measures__faq-answer p {
  margin-bottom: 0;
}

.page-resources-99oke-security-measures__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #1a1a2e; /* Dark background */
  color: #ffffff;
}

.page-resources-99oke-security-measures__cta-title {
  font-size: 2.5em;
  color: #ffc107; /* Auxiliary color */
  margin-bottom: 20px;
}

.page-resources-99oke-security-measures__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-99oke-security-measures__hero-title {
    font-size: 2.5em;
  }

  .page-resources-99oke-security-measures__section-title {
    font-size: 2em;
  }

  .page-resources-99oke-security-measures__cta-title {
    font-size: 2.2em;
  }
}

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

  .page-resources-99oke-security-measures__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-99oke-security-measures__hero-title {
    font-size: 2em;
  }

  .page-resources-99oke-security-measures__hero-description {
    font-size: 1em;
  }

  .page-resources-99oke-security-measures__section,
  .page-resources-99oke-security-measures__faq-section,
  .page-resources-99oke-security-measures__cta-section {
    padding: 40px 15px;
  }

  .page-resources-99oke-security-measures__content-area {
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-resources-99oke-security-measures__text-block {
    font-size: 1em;
  }

  .page-resources-99oke-security-measures__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-99oke-security-measures__btn-primary,
  .page-resources-99oke-security-measures__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Image responsiveness */
  .page-resources-99oke-security-measures img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .page-resources-99oke-security-measures__image-container {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-resources-99oke-security-measures__faq-answer {
    padding: 0 20px;
  }

  .page-resources-99oke-security-measures__faq-item.active .page-resources-99oke-security-measures__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-resources-99oke-security-measures__cta-title {
    font-size: 2em;
  }

  .page-resources-99oke-security-measures__cta-description {
    font-size: 1em;
  }
}