/* style/blog-how-to-safely-access-hi889.css */
.page-blog-how-to-safely-access-hi889 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Assuming body background is light */
}

.page-blog-how-to-safely-access-hi889__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-how-to-safely-access-hi889__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f0f8ff;
}

.page-blog-how-to-safely-access-hi889__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-how-to-safely-access-hi889__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-safely-access-hi889__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-how-to-safely-access-hi889__main-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-safely-access-hi889__hero-description {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-how-to-safely-access-hi889__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-how-to-safely-access-hi889__cta-button--primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-safely-access-hi889__cta-button--primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-blog-how-to-safely-access-hi889__cta-button--secondary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-blog-how-to-safely-access-hi889__cta-button--secondary:hover {
  background-color: #c46405;
  transform: translateY(-2px);
}

.page-blog-how-to-safely-access-hi889__content-section {
  padding: 60px 0;
}

.page-blog-how-to-safely-access-hi889__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-blog-how-to-safely-access-hi889__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-blog-how-to-safely-access-hi889__features-grid,
.page-blog-how-to-safely-access-hi889__issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-safely-access-hi889__feature-item,
.page-blog-how-to-safely-access-hi889__issue-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-safely-access-hi889__feature-item:hover,
.page-blog-how-to-safely-access-hi889__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-safely-access-hi889__feature-title,
.page-blog-how-to-safely-access-hi889__issue-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-safely-access-hi889__feature-description,
.page-blog-how-to-safely-access-hi889__issue-description {
  font-size: 1rem;
  color: #666666;
}

.page-blog-how-to-safely-access-hi889__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-safely-access-hi889__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-blog-how-to-safely-access-hi889__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-how-to-safely-access-hi889__step-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-safely-access-hi889__step-description {
  font-size: 1.05rem;
  color: #444444;
  margin-bottom: 20px;
}

.page-blog-how-to-safely-access-hi889__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-how-to-safely-access-hi889__benefits-item {
  background-color: #f0f8ff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #26A9E0;
  color: #444444;
  font-size: 1.1rem;
}

.page-blog-how-to-safely-access-hi889__benefits-item strong {
  color: #26A9E0;
}

.page-blog-how-to-safely-access-hi889__faq-section {
  background-color: #f9f9f9;
}

.page-blog-how-to-safely-access-hi889__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-blog-how-to-safely-access-hi889__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-safely-access-hi889__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-blog-how-to-safely-access-hi889__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-safely-access-hi889__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-blog-how-to-safely-access-hi889__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-how-to-safely-access-hi889__faq-item[open] .page-blog-how-to-safely-access-hi889__faq-question {
  border-bottom: none;
}

.page-blog-how-to-safely-access-hi889__faq-item[open] .page-blog-how-to-safely-access-hi889__faq-toggle {
  content: '−';
}

.page-blog-how-to-safely-access-hi889__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #FFFFFF;
}

.page-blog-how-to-safely-access-hi889__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-blog-how-to-safely-access-hi889__dark-bg .page-blog-how-to-safely-access-hi889__section-title,
.page-blog-how-to-safely-access-hi889__dark-bg .page-blog-how-to-safely-access-hi889__section-intro {
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-how-to-safely-access-hi889__container {
    padding: 0 15px;
  }

  .page-blog-how-to-safely-access-hi889__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-how-to-safely-access-hi889__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-how-to-safely-access-hi889__hero-description {
    font-size: 1rem;
  }

  .page-blog-how-to-safely-access-hi889__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-how-to-safely-access-hi889__content-section {
    padding: 40px 0;
  }

  .page-blog-how-to-safely-access-hi889__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-safely-access-hi889__section-intro {
    font-size: 1rem;
  }

  .page-blog-how-to-safely-access-hi889__features-grid,
  .page-blog-how-to-safely-access-hi889__issues-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-safely-access-hi889__feature-item,
  .page-blog-how-to-safely-access-hi889__issue-card {
    padding: 20px;
  }

  .page-blog-how-to-safely-access-hi889__feature-title,
  .page-blog-how-to-safely-access-hi889__issue-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-safely-access-hi889__step-title {
    font-size: 1.4rem;
  }

  .page-blog-how-to-safely-access-hi889__step-description {
    font-size: 0.95rem;
  }

  .page-blog-how-to-safely-access-hi889__benefits-item {
    font-size: 1rem;
  }

  .page-blog-how-to-safely-access-hi889__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-safely-access-hi889__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }

  /* Image responsive adjustments */
  .page-blog-how-to-safely-access-hi889 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-safely-access-hi889__hero-image-wrapper,
  .page-blog-how-to-safely-access-hi889__content-section,
  .page-blog-how-to-safely-access-hi889__why-choose,
  .page-blog-how-to-safely-access-hi889__how-to-access,
  .page-blog-how-to-safely-access-hi889__security-issues,
  .page-blog-how-to-safely-access-hi889__benefits,
  .page-blog-how-to-safely-access-hi889__faq-section,
  .page-blog-how-to-safely-access-hi889__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-blog-how-to-safely-access-hi889__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .page-blog-how-to-safely-access-hi889__step-item .page-blog-how-to-safely-access-hi889__cta-button {
    margin-top: 15px;
  }
}