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

@media (max-width: 768px) {
  .page-resources-king-ph-app-security-tips {
    padding-top: var(--header-offset, 120px); /* Maintain header offset on mobile */
  }
}

.page-resources-king-ph-app-security-tips__hero-section {
  background-color: #0A192F; /* Dark blue primary color */
  color: #FFFFFF; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-king-ph-app-security-tips__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-resources-king-ph-app-security-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold auxiliary color for emphasis */
  font-weight: bold;
}

.page-resources-king-ph-app-security-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-king-ph-app-security-tips__hero-image {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1200px; /* Limit hero image width */
}

.page-resources-king-ph-app-security-tips__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-king-ph-app-security-tips__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-resources-king-ph-app-security-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-resources-king-ph-app-security-tips__button--primary {
  background-color: #FFD700; /* Gold auxiliary color */
  color: #0A192F; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-king-ph-app-security-tips__button--primary:hover {
  background-color: #FF4500; /* Orange-red accent color */
  border-color: #FF4500;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-resources-king-ph-app-security-tips__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold auxiliary color */
  border: 2px solid #FFD700;
}

.page-resources-king-ph-app-security-tips__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-resources-king-ph-app-security-tips__content-area {
  max-width: 800px; /* Optimal reading width for long articles */
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-king-ph-app-security-tips__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-king-ph-app-security-tips__back-link:hover {
  color: #FFD700;
}

.page-resources-king-ph-app-security-tips__section-title {
  font-size: 2.2em;
  color: #0A192F;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-king-ph-app-security-tips__sub-section-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-king-ph-app-security-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-king-ph-app-security-tips__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-king-ph-app-security-tips__faq-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-resources-king-ph-app-security-tips__faq-question {
  font-size: 1.3em;
  color: #0A192F;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-king-ph-app-security-tips__faq-answer {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 0;
}

.page-resources-king-ph-app-security-tips__call-to-action {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

@media (min-width: 769px) {
  .page-resources-king-ph-app-security-tips__hero-title {
    font-size: 4em;
  }

  .page-resources-king-ph-app-security-tips__hero-actions {
    flex-direction: row;
  }
  .page-resources-king-ph-app-security-tips__call-to-action {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-resources-king-ph-app-security-tips__hero-title {
    font-size: 2.5em;
  }
  .page-resources-king-ph-app-security-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-king-ph-app-security-tips__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-king-ph-app-security-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-king-ph-app-security-tips__sub-section-title {
    font-size: 1.4em;
  }
  .page-resources-king-ph-app-security-tips__paragraph,
  .page-resources-king-ph-app-security-tips__faq-question,
  .page-resources-king-ph-app-security-tips__faq-answer {
    font-size: 1em;
  }
  .page-resources-king-ph-app-security-tips__content-area {
    padding: 0 15px;
  }
  .page-resources-king-ph-app-security-tips__hero-actions {
    flex-direction: column;
  }
  .page-resources-king-ph-app-security-tips__call-to-action {
    flex-direction: column;
  }
  .page-resources-king-ph-app-security-tips img {
    max-width: 100%;
    height: auto;
  }
}