.page-resources-phvip-security-measures {
  color: #333333; /* Dark text on light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px);
}

.page-resources-phvip-security-measures__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-phvip-security-measures__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-resources-phvip-security-measures__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text contrast */
  border-radius: 8px;
}

.page-resources-phvip-security-measures__hero-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-resources-phvip-security-measures__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-phvip-security-measures__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #000000;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-phvip-security-measures__back-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-phvip-security-measures__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-phvip-security-measures__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-phvip-security-measures__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-phvip-security-measures__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-phvip-security-measures__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-phvip-security-measures__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-phvip-security-measures__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-resources-phvip-security-measures__button--primary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register text color */
}

.page-resources-phvip-security-measures__button--primary:hover {
  background-color: #333333;
}

.page-resources-phvip-security-measures__button--secondary {
  background-color: #FCBC45; /* Login background color */
  color: #000000; /* Login text color for contrast */
}

.page-resources-phvip-security-measures__button--secondary:hover {
  background-color: #E0A73C;
}

.page-resources-phvip-security-measures__button--tertiary {
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
}

.page-resources-phvip-security-measures__button--tertiary:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-phvip-security-measures__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .page-resources-phvip-security-measures__hero-title {
    font-size: 2em;
  }

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

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

  .page-resources-phvip-security-measures__sub-title {
    font-size: 1.5em;
  }

  .page-resources-phvip-security-measures__paragraph,
  .page-resources-phvip-security-measures__list-item {
    font-size: 1em;
  }

  .page-resources-phvip-security-measures__content-area {
    padding: 20px 15px;
  }

  .page-resources-phvip-security-measures__image {
    max-width: 100%;
    height: auto; /* Ensure images don't overflow */
  }

  .page-resources-phvip-security-measures__button {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .page-resources-phvip-security-measures__hero-content {
    width: 95%;
    padding: 15px;
  }
}