.page-resources-f168-security-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2E47; /* Dark blue for main text */
  background-color: #F8F8F8; /* Light background */
}

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

.page-resources-f168-security-features__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-f168-security-features__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,security_pattern,digital_lines]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-f168-security-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-f168-security-features__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-resources-f168-security-features__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
  margin: 10px;
}

.page-resources-f168-security-features__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E47; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-resources-f168-security-features__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-resources-f168-security-features__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-2px);
}

.page-resources-f168-security-features__section {
  padding: 80px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-f168-security-features__section:last-of-type {
  border-bottom: none;
}

.page-resources-f168-security-features__section-title {
  font-size: 2.5em;
  color: #1A2E47;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-resources-f168-security-features__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-resources-f168-security-features__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #4A5E73;
}

.page-resources-f168-security-features__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-f168-security-features__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-f168-security-features__content-wrapper .page-resources-f168-security-features__text-content {
  flex: 1;
}

.page-resources-f168-security-features__content-wrapper .page-resources-f168-security-features__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-resources-f168-security-features__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-resources-f168-security-features__grid--two-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-resources-f168-security-features__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-f168-security-features__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-f168-security-features__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for icons */
}

.page-resources-f168-security-features__item-title {
  font-size: 1.6em;
  color: #1A2E47;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-f168-security-features__grid-item p {
  font-size: 1em;
  color: #4A5E73;
  line-height: 1.7;
}

.page-resources-f168-security-features__cta-section {
  background-color: #1A2E47;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-resources-f168-security-features__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-f168-security-features__cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

  .page-resources-f168-security-features__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-resources-f168-security-features__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-f168-security-features__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-resources-f168-security-features__grid--two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-f168-security-features__hero {
    padding: 80px 0;
  }

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

  .page-resources-f168-security-features__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-f168-security-features__section {
    padding: 60px 0;
  }

  .page-resources-f168-security-features__section-title {
    font-size: 1.8em;
  }

  .page-resources-f168-security-features__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

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

  .page-resources-f168-security-features__cta-text {
    font-size: 1em;
  }

  .page-resources-f168-security-features__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

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

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

  .page-resources-f168-security-features__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-f168-security-features__button {
    width: 100%;
    margin: 10px 0;
  }
}