.page-resources-68win12-app-security-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#0a0a0a) */
}

.page-resources-68win12-app-security-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bbd 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-resources-68win12-app-security-features__dark-bg {
  color: #ffffff;
  background: #26A9E0; /* Using brand color as background */
}

.page-resources-68win12-app-security-features__light-bg {
  color: #ffffff; /* Still light text because body is dark. This section's background will be darker */
  background: #1a1a1a; /* A slightly lighter dark background for content area */
}

.page-resources-68win12-app-security-features__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-resources-68win12-app-security-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

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

.page-resources-68win12-app-security-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-68win12-app-security-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-resources-68win12-app-security-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.page-resources-68win12-app-security-features__btn-primary,
.page-resources-68win12-app-security-features__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;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-68win12-app-security-features__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-68win12-app-security-features__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-resources-68win12-app-security-features__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-68win12-app-security-features__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-68win12-app-security-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #ffffff; /* Ensure text is light on this dark background */
}

.page-resources-68win12-app-security-features__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0;
  font-weight: bold;
}

.page-resources-68win12-app-security-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #f0f0f0;
}

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

.page-resources-68win12-app-security-features__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-68win12-app-security-features__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-68win12-app-security-features__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: bold;
}

.page-resources-68win12-app-security-features__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-68win12-app-security-features__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.page-resources-68win12-app-security-features__image-fullwidth {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
}

.page-resources-68win12-app-security-features__image-right {
  width: 100%;
  max-width: 500px;
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.page-resources-68win12-app-security-features__image-left {
  width: 100%;
  max-width: 500px;
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.page-resources-68win12-app-security-features__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #26A9E0;
  font-weight: bold;
  width: 100%; /* Ensure it takes full width above paragraphs */
}

.page-resources-68win12-app-security-features__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-68win12-app-security-features__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-68win12-app-security-features__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;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-resources-68win12-app-security-features__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-resources-68win12-app-security-features__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-68win12-app-security-features__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-resources-68win12-app-security-features__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-resources-68win12-app-security-features__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-68win12-app-security-features__faq-item[open] .page-resources-68win12-app-security-features__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-68win12-app-security-features__faq-item[open] .page-resources-68win12-app-security-features__faq-toggle {
  content: '−';
}

.page-resources-68win12-app-security-features__link-inline {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-68win12-app-security-features__link-inline:hover {
  color: #1a7bbd;
}

.page-resources-68win12-app-security-features__cta-buttons--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-68win12-app-security-features__hero-title {
    font-size: 2.8em;
  }

  .page-resources-68win12-app-security-features__section-title {
    font-size: 2em;
  }

  .page-resources-68win12-app-security-features__sub-title {
    font-size: 1.6em;
  }

  .page-resources-68win12-app-security-features__paragraph,
  .page-resources-68win12-app-security-features__card-description {
    font-size: 1em;
  }

  .page-resources-68win12-app-security-features__image-right,
  .page-resources-68win12-app-security-features__image-left {
    float: none;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .page-resources-68win12-app-security-features__content-block {
    flex-direction: column;
  }
}

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

  .page-resources-68win12-app-security-features__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-68win12-app-security-features__hero-title {
    font-size: 2.2em;
  }

  .page-resources-68win12-app-security-features__hero-description {
    font-size: 1em;
  }

  .page-resources-68win12-app-security-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-resources-68win12-app-security-features__btn-primary,
  .page-resources-68win12-app-security-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-68win12-app-security-features__content-area {
    padding: 40px 15px;
  }

  .page-resources-68win12-app-security-features__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-68win12-app-security-features__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

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

  .page-resources-68win12-app-security-features__section,
  .page-resources-68win12-app-security-features__card,
  .page-resources-68win12-app-security-features__container,
  .page-resources-68win12-app-security-features__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-resources-68win12-app-security-features__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-68win12-app-security-features__faq-answer {
    padding: 0 20px 15px;
  }

  .page-resources-68win12-app-security-features__image-right,
  .page-resources-68win12-app-security-features__image-left {
    margin: 0 0 20px 0;
  }
}