/* style/blog-hi888-safe-login-guide.css */

/* Base styles for the page */
.page-blog-hi888-safe-login-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, assuming dark */
}

.page-blog-hi888-safe-login-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-hi888-safe-login-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #26A9E0;
  overflow: hidden;
}

.page-blog-hi888-safe-login-guide__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-hi888-safe-login-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hi888-safe-login-guide__hero-content {
  width: 100%;
  max-width: 800px;
  padding: 40px 20px;
  text-align: center;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff; /* White text for contrast */
  box-sizing: border-box;
}

.page-blog-hi888-safe-login-guide__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-hi888-safe-login-guide__lead-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #ffffff;
}

/* CTA Buttons */
.page-blog-hi888-safe-login-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-hi888-safe-login-guide__btn-primary,
.page-blog-hi888-safe-login-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-hi888-safe-login-guide__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-hi888-safe-login-guide__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-hi888-safe-login-guide__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-hi888-safe-login-guide__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0; /* Brand color */
}

/* Content Area */
.page-blog-hi888-safe-login-guide__content-area {
  background-color: #ffffff; /* White background for main content */
  color: #333333; /* Dark text for contrast on white */
  padding: 60px 20px;
}

.page-blog-hi888-safe-login-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand color for titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-hi888-safe-login-guide__sub-title {
  font-size: 1.5em;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-blog-hi888-safe-login-guide__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-hi888-safe-login-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-hi888-safe-login-guide__list-item {
  margin-bottom: 8px;
}

.page-blog-hi888-safe-login-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-hi888-safe-login-guide .highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* FAQ Section */
.page-blog-hi888-safe-login-guide__faq-list {
  margin-top: 40px;
}

.page-blog-hi888-safe-login-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hi888-safe-login-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
  user-select: none;
}

.page-blog-hi888-safe-login-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hi888-safe-login-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-hi888-safe-login-guide__faq-item[open] .page-blog-hi888-safe-login-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hi888-safe-login-guide__faq-answer {
  padding: 15px 25px;
  color: #555555;
  background-color: #f9f9f9;
  border-top: 1px solid #e9e9e9;
  font-size: 1em;
}

.page-blog-hi888-safe-login-guide__faq-answer p {
  margin-bottom: 0;
}

/* Call to Action Section */
.page-blog-hi888-safe-login-guide__call-to-action {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-hi888-safe-login-guide {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-hi888-safe-login-guide__hero-content {
    padding: 30px 15px;
  }

  .page-blog-hi888-safe-login-guide__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-blog-hi888-safe-login-guide__lead-text {
    font-size: 1em;
  }

  .page-blog-hi888-safe-login-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-hi888-safe-login-guide__btn-primary,
  .page-blog-hi888-safe-login-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hi888-safe-login-guide__content-area,
  .page-blog-hi888-safe-login-guide__call-to-action {
    padding: 40px 15px;
  }

  .page-blog-hi888-safe-login-guide__section-title {
    font-size: 1.8em;
  }

  .page-blog-hi888-safe-login-guide__sub-title {
    font-size: 1.3em;
  }

  /* Mobile image responsive adaptation */
  .page-blog-hi888-safe-login-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-hi888-safe-login-guide__hero-image-wrapper,
  .page-blog-hi888-safe-login-guide__content-area,
  .page-blog-hi888-safe-login-guide__call-to-action,
  .page-blog-hi888-safe-login-guide__container,
  .page-blog-hi888-safe-login-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-hi888-safe-login-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Ensure content images are at least 200px wide if possible */
  .page-blog-hi888-safe-login-guide__content-image {
    min-width: 200px;
    min-height: 200px;
  }
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .page-blog-hi888-safe-login-guide__hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    padding: 50px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  }
}

/* Color Contrast Fixes (if needed) */
.page-blog-hi888-safe-login-guide__dark-bg {
  background-color: #26A9E0; /* Brand color */
  color: #ffffff; /* White text for contrast */
}

.page-blog-hi888-safe-login-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for contrast */
}