.page-resources-security-guide {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by sticky header */
}

.page-resources-security-guide__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
}

.page-resources-security-guide__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-resources-security-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-security-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 10px;
}

.page-resources-security-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-resources-security-guide__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on login button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-security-guide__hero-button:hover {
  background-color: #FCBC45; /* Keep the same color on hover as per prompt, if no specific hover color is provided */
  transform: translateY(-3px);
}

.page-resources-security-guide__content-area {
  max-width: 800px; /* Content width control for readability */
  margin: 40px auto;
  padding: 0 20px;
}

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

.page-resources-security-guide__back-link:hover {
  color: #000000;
}

.page-resources-security-guide__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-security-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-resources-security-guide__text-link {
  color: #FCBC45;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-security-guide__text-link:hover {
  color: #000000;
}

.page-resources-security-guide__call-to-action-group {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000; /* Main color as background */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-security-guide__cta-text {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-security-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-security-guide__cta-button--register {
  background-color: #ffffff; /* Register button color */
  color: #000000; /* Dark text on register button */
}

.page-resources-security-guide__cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

.page-resources-security-guide__cta-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on login button */
}

.page-resources-security-guide__cta-button--login:hover {
  background-color: #FCBC45; /* Keep the same color on hover as per prompt, if no specific hover color is provided */
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-security-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-security-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-security-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-security-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-security-guide__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-resources-security-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-security-guide__paragraph {
    font-size: 1em;
  }
  .page-resources-security-guide__cta-text {
    font-size: 1.3em;
  }
  .page-resources-security-guide__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-resources-security-guide__image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-security-guide {
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  .page-resources-security-guide__content-area img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-resources-security-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-security-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-security-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-security-guide__cta-text {
    font-size: 1.1em;
  }
  .page-resources-security-guide__cta-button {
    width: 90%;
  }
}