.page-blog-sic88-no-hu-beginners-guide {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-sic88-no-hu-beginners-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for visual separation */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-sic88-no-hu-beginners-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-sic88-no-hu-beginners-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-sic88-no-hu-beginners-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6;
}

.page-blog-sic88-no-hu-beginners-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-blog-sic88-no-hu-beginners-guide__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sic88-no-hu-beginners-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-sic88-no-hu-beginners-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow on hover */
}

.page-blog-sic88-no-hu-beginners-guide__cta-button--secondary {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  color: #A7D9B8; /* Text Secondary */
  margin-left: 15px;
}

.page-blog-sic88-no-hu-beginners-guide__cta-button--secondary:hover {
  background: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-blog-sic88-no-hu-beginners-guide__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
}

.page-blog-sic88-no-hu-beginners-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.page-blog-sic88-no-hu-beginners-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  border-radius: 10px;
}

.page-blog-sic88-no-hu-beginners-guide__article {
  line-height: 1.8;
}

.page-blog-sic88-no-hu-beginners-guide__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-blog-sic88-no-hu-beginners-guide__sub-section-title {
  font-size: 1.8rem;
  color: #11A84E; /* Primary Color */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #22C768; /* Auxiliary Color */
  padding-left: 15px;
}

.page-blog-sic88-no-hu-beginners-guide__text-block p,
.page-blog-sic88-no-hu-beginners-guide__text-block li {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog-sic88-no-hu-beginners-guide__text-block strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-sic88-no-hu-beginners-guide__text-block ul,
.page-blog-sic88-no-hu-beginners-guide__text-block ol {
  list-style-position: inside;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-sic88-no-hu-beginners-guide__text-block ul li::marker {
  color: #22C768; /* Auxiliary Color */
}

.page-blog-sic88-no-hu-beginners-guide__text-block ol li::marker {
  color: #F2C14E; /* Gold */
}

.page-blog-sic88-no-hu-beginners-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-blog-sic88-no-hu-beginners-guide__faq-list {
  margin-top: 40px;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-blog-sic88-no-hu-beginners-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-sic88-no-hu-beginners-guide__faq-item[open] {
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.3);
}

.page-blog-sic88-no-hu-beginners-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-sic88-no-hu-beginners-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-sic88-no-hu-beginners-guide__faq-question .page-blog-sic88-no-hu-beginners-guide__faq-toggle {
  font-size: 1.5rem;
  color: #22C768; /* Auxiliary Color */
  margin-left: 15px;
}

.page-blog-sic88-no-hu-beginners-guide__faq-item[open] .page-blog-sic88-no-hu-beginners-guide__faq-question {
  border-bottom: none;
}

.page-blog-sic88-no-hu-beginners-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sic88-no-hu-beginners-guide__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-sic88-no-hu-beginners-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-sic88-no-hu-beginners-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-sic88-no-hu-beginners-guide__hero-content {
    padding: 15px;
  }

  .page-blog-sic88-no-hu-beginners-guide__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-blog-sic88-no-hu-beginners-guide__subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-sic88-no-hu-beginners-guide__cta-button {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 10px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-blog-sic88-no-hu-beginners-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-sic88-no-hu-beginners-guide__content-area {
    padding: 20px 15px;
  }

  .page-blog-sic88-no-hu-beginners-guide__section-title {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-blog-sic88-no-hu-beginners-guide__sub-section-title {
    font-size: 1.5rem;
    margin-top: 25px;
  }

  .page-blog-sic88-no-hu-beginners-guide__text-block p,
  .page-blog-sic88-no-hu-beginners-guide__text-block li {
    font-size: 1rem;
  }

  .page-blog-sic88-no-hu-beginners-guide__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-sic88-no-hu-beginners-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-sic88-no-hu-beginners-guide__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

  .page-blog-sic88-no-hu-beginners-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure all image containers are responsive */
  .page-blog-sic88-no-hu-beginners-guide__hero-image-wrapper,
  .page-blog-sic88-no-hu-beginners-guide__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}