.page-resources-okfun-ph-account-security {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-resources-okfun-ph-account-security__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for the hero section */
}

.page-resources-okfun-ph-account-security__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-resources-okfun-ph-account-security__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #FFFFFF; /* White text for hero section */
}

.page-resources-okfun-ph-account-security__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-okfun-ph-account-security__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-okfun-ph-account-security__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-okfun-ph-account-security__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-okfun-ph-account-security__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-okfun-ph-account-security__button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  border-color: #FCBC45;
}

.page-resources-okfun-ph-account-security__button--login {
  background-color: #FCBC45;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-resources-okfun-ph-account-security__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-resources-okfun-ph-account-security__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 1.1em;
}

.page-resources-okfun-ph-account-security__section-title {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-okfun-ph-account-security__paragraph {
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-okfun-ph-account-security__image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum width for content images */
  min-height: 200px; /* Minimum height for content images */
}

.page-resources-okfun-ph-account-security__image--centered {
  text-align: center;
}

.page-resources-okfun-ph-account-security__cta-section {
  background-color: #F8F8F8;
  padding: 40px;
  margin-top: 60px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-okfun-ph-account-security__cta-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-resources-okfun-ph-account-security__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-resources-okfun-ph-account-security__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-okfun-ph-account-security__related-resources {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #EEEEEE;
}

.page-resources-okfun-ph-account-security__related-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-okfun-ph-account-security__resource-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-okfun-ph-account-security__resource-item {
  margin-bottom: 10px;
}

.page-resources-okfun-ph-account-security__resource-item a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-okfun-ph-account-security__resource-item a:hover {
  text-decoration: underline;
}

.page-resources-okfun-ph-account-security__button--back {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin: 0 auto;
  display: block;
  max-width: 250px;
  text-align: center;
}

.page-resources-okfun-ph-account-security__button--back:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-okfun-ph-account-security__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px);
  }

  .page-resources-okfun-ph-account-security__main-title {
    font-size: 2.2em;
  }

  .page-resources-okfun-ph-account-security__hero-description {
    font-size: 1em;
  }

  .page-resources-okfun-ph-account-security__hero-buttons,
  .page-resources-okfun-ph-account-security__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-okfun-ph-account-security__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-resources-okfun-ph-account-security__content-area {
    padding: 20px 15px;
    font-size: 1em;
  }

  .page-resources-okfun-ph-account-security__section-title {
    font-size: 1.7em;
  }

  .page-resources-okfun-ph-account-security__cta-title {
    font-size: 1.8em;
  }

  .page-resources-okfun-ph-account-security__image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px; /* Enforce min size even on mobile */
  }

  .page-resources-okfun-ph-account-security__resource-item a {
    font-size: 1em;
  }
}