/* style/blog-hello88-security-features.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-light: #ffffff;
  --login-color: #EA7C07;
}

.page-blog-hello88-security-features {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark (#0a0a0a), so use light text */
  background-color: var(--bg-dark);
}

.page-blog-hello88-security-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--bg-dark);
}

.page-blog-hello88-security-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-blog-hello88-security-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-hello88-security-features__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-light);
}

.page-blog-hello88-security-features__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-blog-hello88-security-features__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-blog-hello88-security-features__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hello88-security-features__btn-primary,
.page-blog-hello88-security-features__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-hello88-security-features__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-hello88-security-features__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-hello88-security-features__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-hello88-security-features__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-hello88-security-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-hello88-security-features__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-hello88-security-features__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-blog-hello88-security-features__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
  color: inherit;
}

.page-blog-hello88-security-features__dark-bg .page-blog-hello88-security-features__section-title {
  color: var(--secondary-color);
}

.page-blog-hello88-security-features__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-blog-hello88-security-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-security-features__feature-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-blog-hello88-security-features__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-blog-hello88-security-features__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-hello88-security-features__feature-description {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.page-blog-hello88-security-features__bullet-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-hello88-security-features__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: inherit;
}

.page-blog-hello88-security-features__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hello88-security-features__card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-blog-hello88-security-features__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-hello88-security-features__card-description {
  font-size: 1rem;
  color: var(--text-dark);
}

.page-blog-hello88-security-features__checklist {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-hello88-security-features__checklist-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: inherit;
}

.page-blog-hello88-security-features__checklist-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-blog-hello88-security-features__benefits-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-hello88-security-features__benefits-list .page-blog-hello88-security-features__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: inherit;
}

.page-blog-hello88-security-features__benefits-list .page-blog-hello88-security-features__list-item::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--login-color); /* Using a distinct color for emphasis */
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.page-blog-hello88-security-features__faq-list {
  margin-top: 40px;
}

.page-blog-hello88-security-features__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
}

.page-blog-hello88-security-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary-color);
  list-style: none;
}

.page-blog-hello88-security-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-security-features__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-hello88-security-features__faq-qtext {
  flex-grow: 1;
}

.page-blog-hello88-security-features__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-hello88-security-features__faq-item[open] .page-blog-hello88-security-features__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hello88-security-features__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-blog-hello88-security-features__cta-section {
  text-align: center;
  padding: 80px 20px;
}

.page-blog-hello88-security-features__cta-buttons--center {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hello88-security-features__hero-content {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-security-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hello88-security-features__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-hello88-security-features__main-title {
    font-size: 2rem;
  }

  .page-blog-hello88-security-features__hero-description {
    font-size: 1rem;
  }

  .page-blog-hello88-security-features__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-hello88-security-features__btn-primary,
  .page-blog-hello88-security-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hello88-security-features__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-hello88-security-features__section-title {
    font-size: 1.8rem;
  }

  .page-blog-hello88-security-features__paragraph,
  .page-blog-hello88-security-features__list-item,
  .page-blog-hello88-security-features__feature-description,
  .page-blog-hello88-security-features__card-description,
  .page-blog-hello88-security-features__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-hello88-security-features__feature-card,
  .page-blog-hello88-security-features__card {
    padding: 20px;
  }

  .page-blog-hello88-security-features__feature-title,
  .page-blog-hello88-security-features__card-title {
    font-size: 1.3rem;
  }

  .page-blog-hello88-security-features__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-hello88-security-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-security-features__hero-image-wrapper,
  .page-blog-hello88-security-features__feature-icon,
  .page-blog-hello88-security-features__video-container,
  .page-blog-hello88-security-features__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-hello88-security-features__cta-section {
    padding: 50px 15px;
  }
}