/* style/blog-secure-login-king78.css */
.page-blog-secure-login-king78 {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
}

.page-blog-secure-login-king78__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
  text-align: center;
  background-color: #0a0a0a; /* Ensure dark background for hero */
}

.page-blog-secure-login-king78__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for hero image container */
  margin-bottom: 30px;
}

.page-blog-secure-login-king78__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-secure-login-king78__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-secure-login-king78__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-blog-secure-login-king78__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-secure-login-king78__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-blog-secure-login-king78__highlight {
  color: #EA7C07;
  font-weight: bold;
}

.page-blog-secure-login-king78__btn-primary {
  display: inline-block;
  background-color: #EA7C07;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-secure-login-king78__btn-primary:hover {
  background-color: #d66c06;
}

.page-blog-secure-login-king78__content-section {
  padding: 60px 20px;
}

.page-blog-secure-login-king78__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-secure-login-king78__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-blog-secure-login-king78__dark-bg .page-blog-secure-login-king78__section-title {
  color: #ffffff;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__section-title {
  color: #333333;
}

.page-blog-secure-login-king78__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-secure-login-king78__dark-bg .page-blog-secure-login-king78__text-block {
  color: #e0e0e0;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__text-block {
  color: #333333;
}

.page-blog-secure-login-king78__feature-grid, 
.page-blog-secure-login-king78__steps-grid, 
.page-blog-secure-login-king78__troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-secure-login-king78__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__card {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-secure-login-king78__feature-title, 
.page-blog-secure-login-king78__step-title, 
.page-blog-secure-login-king78__troubleshooting-title, 
.page-blog-secure-login-king78__list-title, 
.page-blog-secure-login-king78__step-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-secure-login-king78__card p {
  font-size: 1rem;
  line-height: 1.6;
}

.page-blog-secure-login-king78__step-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-secure-login-king78__login-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-secure-login-king78__step-card {
  position: relative;
  text-align: center;
  padding-top: 60px;
}

.page-blog-secure-login-king78__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26A9E0;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid #0a0a0a;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__step-number {
  border-color: #ffffff;
}

.page-blog-secure-login-king78__image-block {
  margin-top: 40px;
  text-align: center;
}

.page-blog-secure-login-king78__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-secure-login-king78__security-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-secure-login-king78__security-item {
  display: flex;
  flex-direction: column;
}

.page-blog-secure-login-king78__faq-list {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-secure-login-king78__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__faq-item {
  border: 1px solid #e0e0e0;
}

.page-blog-secure-login-king78__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2); /* Lighter brand color for question background */
  color: #ffffff;
  border-radius: 10px;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__faq-question {
  background-color: #f0f8ff; /* Light background for light section */
  color: #333333;
}

.page-blog-secure-login-king78__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-secure-login-king78__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-secure-login-king78__dark-bg .page-blog-secure-login-king78__faq-toggle {
  color: #26A9E0;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__faq-toggle {
  color: #26A9E0;
}

.page-blog-secure-login-king78__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.page-blog-secure-login-king78__light-bg .page-blog-secure-login-king78__faq-answer {
  color: #555555;
  background-color: #fdfdfd;
  border-top: 1px solid #f0f0f0;
}

.page-blog-secure-login-king78__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #26A9E0; /* Use brand color for CTA background */
  color: #ffffff;
}

.page-blog-secure-login-king78__cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-secure-login-king78__cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-secure-login-king78__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-secure-login-king78__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-secure-login-king78__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-secure-login-king78__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-secure-login-king78__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-secure-login-king78__content-section {
    padding: 40px 15px;
  }

  .page-blog-secure-login-king78__container,
  .page-blog-secure-login-king78__feature-grid,
  .page-blog-secure-login-king78__steps-grid,
  .page-blog-secure-login-king78__troubleshooting-grid,
  .page-blog-secure-login-king778__login-steps,
  .page-blog-secure-login-king78__security-list,
  .page-blog-secure-login-king78__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-secure-login-king78__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-blog-secure-login-king78__text-block {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-blog-secure-login-king78__feature-grid, 
  .page-blog-secure-login-king78__steps-grid, 
  .page-blog-secure-login-king78__troubleshooting-grid,
  .page-blog-secure-login-king78__login-steps,
  .page-blog-secure-login-king78__security-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-secure-login-king78 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }

  .page-blog-secure-login-king78__image-block {
    margin-top: 20px;
  }

  .page-blog-secure-login-king78__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-secure-login-king78__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-secure-login-king78__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }

  .page-blog-secure-login-king78__cta-section {
    padding: 60px 15px;
  }

  .page-blog-secure-login-king78__cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-secure-login-king78__cta-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}