.page-resources-account-security-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: #FFFFFF; /* Matches body background from shared.css */
}

.page-resources-account-security-tips__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

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

.page-resources-account-security-tips__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-resources-account-security-tips__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

.page-resources-account-security-tips__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color for CTA */
  color: #000000; /* Dark text on bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-account-security-tips__hero-button:hover {
  background-color: #e0a53b;
}

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

.page-resources-account-security-tips__section-title {
  font-size: 2em;
  color: #000000; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-account-security-tips__sub-section-title {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-account-security-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-account-security-tips__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-resources-account-security-tips__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 30px 20px;
  background-color: #F8F8F8;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-account-security-tips__action-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-resources-account-security-tips__action-button:hover {
  background-color: #e0a53b;
}

.page-resources-account-security-tips__action-button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
}

.page-resources-account-security-tips__action-button--secondary:hover {
  background-color: #333333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-account-security-tips__hero-title {
    font-size: 2em;
  }

  .page-resources-account-security-tips__hero-description {
    font-size: 1em;
  }

  .page-resources-account-security-tips__section-title {
    font-size: 1.7em;
  }

  .page-resources-account-security-tips__sub-section-title {
    font-size: 1.3em;
  }

  .page-resources-account-security-tips__paragraph {
    font-size: 1em;
  }

  .page-resources-account-security-tips__hero-button,
  .page-resources-account-security-tips__action-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-account-security-tips__hero-content {
    width: 90%;
  }

  .page-resources-account-security-tips__content-area {
    padding: 0 15px;
  }

  /* Mobile content image sizing */
  .page-resources-account-security-tips__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
}

@media (max-width: 480px) {
  .page-resources-account-security-tips__hero-title {
    font-size: 1.6em;
  }

  .page-resources-account-security-tips__hero-description {
    font-size: 0.9em;
  }

  .page-resources-account-security-tips__action-button {
    display: block;
    margin: 10px auto;
  }
}