/* style/resources-goo88d-security-features.css */
.page-resources-goo88d-security-features {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-resources-goo88d-security-features__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-resources-goo88d-security-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title for contrast */
  font-weight: bold;
}

.page-resources-goo88d-security-features__hero-title .highlight {
  color: #fff; /* White for brand name in title */
}

.page-resources-goo88d-security-features__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-goo88d-security-features__hero-subtitle .highlight {
  color: #FFD700;
}

.page-resources-goo88d-security-features__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-goo88d-security-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-resources-goo88d-security-features__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-resources-goo88d-security-features__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-goo88d-security-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-goo88d-security-features__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-resources-goo88d-security-features__section {
  padding: 80px 0;
}

.page-resources-goo88d-security-features__section--alt-bg {
  background-color: #f8f8f8;
}

.page-resources-goo88d-security-features__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

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

.page-resources-goo88d-security-features__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.page-resources-goo88d-security-features__text-content {
  flex: 1;
}

.page-resources-goo88d-security-features__text-content p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.1em;
}

.page-resources-goo88d-security-features__text-content .highlight {
  color: #003366;
  font-weight: bold;
}

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

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

.page-resources-goo88d-security-features__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 60px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-resources-goo88d-security-features__benefits-list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #003366;
  font-weight: 600;
}

.page-resources-goo88d-security-features__icon-check {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #FFD700;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  flex-shrink: 0;
}

.page-resources-goo88d-security-features__icon-check::before {
  content: '✔';
  color: #003366;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-resources-goo88d-security-features__call-to-action {
  text-align: center;
  padding: 50px;
  background-color: #003366;
  color: #fff;
  border-radius: 10px;
  margin-top: 60px;
}

.page-resources-goo88d-security-features__call-to-action p {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-goo88d-security-features__call-to-action .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-goo88d-security-features__hero-title {
    font-size: 2.5em;
  }
  .page-resources-goo88d-security-features__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-goo88d-security-features__section-title {
    font-size: 2em;
  }
  .page-resources-goo88d-security-features__sub-title {
    font-size: 1.5em;
  }
  .page-resources-goo88d-security-features__content-wrapper {
    flex-direction: column;
  }
  .page-resources-goo88d-security-features__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-resources-goo88d-security-features__benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-goo88d-security-features__hero-section {
    padding: 60px 0;
  }
  .page-resources-goo88d-security-features__hero-title {
    font-size: 2em;
  }
  .page-resources-goo88d-security-features__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-goo88d-security-features__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-goo88d-security-features__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-goo88d-security-features__section {
    padding: 60px 0;
  }
  .page-resources-goo88d-security-features__section-title {
    font-size: 1.8em;
  }
  .page-resources-goo88d-security-features__sub-title {
    font-size: 1.3em;
  }
  .page-resources-goo88d-security-features__call-to-action p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-goo88d-security-features__hero-title {
    font-size: 1.8em;
  }
  .page-resources-goo88d-security-features__hero-subtitle {
    font-size: 0.9em;
  }
  .page-resources-goo88d-security-features__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-goo88d-security-features__section-title {
    font-size: 1.5em;
  }
  .page-resources-goo88d-security-features__sub-title {
    font-size: 1.1em;
  }
  .page-resources-goo88d-security-features__benefits-list li {
    font-size: 1em;
    padding: 15px;
  }
  .page-resources-goo88d-security-features__call-to-action {
    padding: 30px;
  }
  .page-resources-goo88d-security-features__call-to-action p {
    font-size: 1em;
  }
}