.page-resources-phwin-account-security-guide {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: var(--header-offset, 120px);
}

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

.page-resources-phwin-account-security-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.7);
}

.page-resources-phwin-account-security-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

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

.page-resources-phwin-account-security-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-resources-phwin-account-security-guide__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-phwin-account-security-guide__hero-button:hover {
  background-color: #e6c200;
}

.page-resources-phwin-account-security-guide__article-section {
  padding: 40px 20px;
}

.page-resources-phwin-account-security-guide__article-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-phwin-account-security-guide__article-heading {
  color: #1A202C;
  font-size: 2em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-phwin-account-security-guide__article-subheading {
  color: #1A202C;
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-resources-phwin-account-security-guide__article-content p {
  margin-bottom: 15px;
  font-size: 1em;
}

.page-resources-phwin-account-security-guide__list,
.page-resources-phwin-account-security-guide__numbered-list {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-resources-phwin-account-security-guide__list li,
.page-resources-phwin-account-security-guide__numbered-list li {
  margin-bottom: 8px;
}

.page-resources-phwin-account-security-guide__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-phwin-account-security-guide__conclusion-text {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
  color: #1A202C;
}

.page-resources-phwin-account-security-guide__cta-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-phwin-account-security-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
}

.page-resources-phwin-account-security-guide__cta-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-phwin-account-security-guide__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-resources-phwin-account-security-guide__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-phwin-account-security-guide__cta-button--secondary:hover {
  background-color: #0d121c;
  color: #fff;
}

.page-resources-phwin-account-security-guide__back-link-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-resources-phwin-account-security-guide__back-link {
  color: #1A202C;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-phwin-account-security-guide__back-link:hover {
  color: #FFD700;
}

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

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

  .page-resources-phwin-account-security-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-phwin-account-security-guide__article-container {
    padding: 20px;
  }

  .page-resources-phwin-account-security-guide__article-heading {
    font-size: 1.7em;
  }

  .page-resources-phwin-account-security-guide__article-subheading {
    font-size: 1.3em;
  }

  .page-resources-phwin-account-security-guide__article-content img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-phwin-account-security-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-phwin-account-security-guide__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-resources-phwin-account-security-guide__article-content img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

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

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

  .page-resources-phwin-account-security-guide__hero-content {
    padding: 15px;
  }

  .page-resources-phwin-account-security-guide__article-container {
    padding: 15px;
  }
}