.page-resources-ph33-login-security {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-ph33-login-security__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  min-height: 500px;
  background-color: #000000; /* Main color */
}

.page-resources-ph33-login-security__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-resources-ph33-login-security__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-ph33-login-security__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-ph33-login-security__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-ph33-login-security__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-ph33-login-security__hero-button {
  display: inline-block;
  background-color: #DC143C; /* Accent color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-resources-ph33-login-security__hero-button:hover {
  background-color: #ff4500;
  transform: translateY(-3px);
}

.page-resources-ph33-login-security__content-area {
  max-width: 800px; /* Fluid layout content width */
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-resources-ph33-login-security__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-ph33-login-security__back-link:hover {
  color: #ffffff;
}

.page-resources-ph33-login-security__article-heading {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-ph33-login-security__article-subheading {
  font-size: 1.8em;
  color: #DC143C;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-resources-ph33-login-security__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-ph33-login-security__article-list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-ph33-login-security__article-list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-ph33-login-security__article-list-item strong {
  color: #FFD700;
}

.page-resources-ph33-login-security__article-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

.page-resources-ph33-login-security__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-ph33-login-security__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #000000; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-resources-ph33-login-security__cta-button:hover {
  background-color: #DC143C; /* Accent color on hover */
  color: #ffffff;
  transform: translateY(-3px);
}

.page-resources-ph33-login-security__cta-button--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  box-shadow: none;
}

.page-resources-ph33-login-security__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-ph33-login-security__hero-title {
    font-size: 3em;
  }
  .page-resources-ph33-login-security__hero-description {
    font-size: 1.2em;
  }
  .page-resources-ph33-login-security__article-heading {
    font-size: 2em;
  }
  .page-resources-ph33-login-security__article-subheading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-ph33-login-security__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-resources-ph33-login-security__hero-title {
    font-size: 2.5em;
  }
  .page-resources-ph33-login-security__hero-description {
    font-size: 1em;
  }
  .page-resources-ph33-login-security__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-ph33-login-security__content-area {
    margin: 20px auto;
    padding: 15px;
  }
  .page-resources-ph33-login-security__article-heading {
    font-size: 1.8em;
  }
  .page-resources-ph33-login-security__article-subheading {
    font-size: 1.4em;
  }
  .page-resources-ph33-login-security__article-paragraph,
  .page-resources-ph33-login-security__article-list-item {
    font-size: 0.95em;
  }
  .page-resources-ph33-login-security__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-ph33-login-security__cta-button {
    width: 100%;
    max-width: 300px;
  }
  /* Mobile image overflow prevention */
  .page-resources-ph33-login-security img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-ph33-login-security__hero-title {
    font-size: 2em;
  }
  .page-resources-ph33-login-security__hero-description {
    font-size: 0.9em;
  }
  .page-resources-ph33-login-security__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-ph33-login-security__article-heading {
    font-size: 1.5em;
  }
  .page-resources-ph33-login-security__article-subheading {
    font-size: 1.2em;
  }
  .page-resources-ph33-login-security__article-list {
    margin-left: 15px;
  }
}