.page-blog-what-is-s999-code {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-what-is-s999-code__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #08160F; /* Ensure dark background for contrast */
  color: #F2FFF6;
  text-align: center;
}

.page-blog-what-is-s999-code__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-what-is-s999-code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-what-is-s999-code__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-what-is-s999-code__main-title {
  color: #F2FFF6;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-what-is-s999-code__intro-text {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-what-is-s999-code__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-what-is-s999-code__btn-primary,
.page-blog-what-is-s999-code__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-what-is-s999-code__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-what-is-s999-code__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-what-is-s999-code__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-what-is-s999-code__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-blog-what-is-s999-code__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-what-is-s999-code__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-what-is-s999-code__section-title {
  color: #F2FFF6;
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #2E7A4E;
  padding-bottom: 10px;
}

.page-blog-what-is-s999-code p {
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-blog-what-is-s999-code__link {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-what-is-s999-code__link:hover {
  text-decoration: underline;
}

.page-blog-what-is-s999-code__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-what-is-s999-code__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-blog-what-is-s999-code__ordered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-blog-what-is-s999-code__list-item {
  margin-bottom: 0.5em;
  color: #F2FFF6;
}

.page-blog-what-is-s999-code__faq-list {
  margin-top: 40px;
}

.page-blog-what-is-s999-code__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-what-is-s999-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6;
  font-size: 1.1em;
  background-color: #11271B;
  list-style: none; /* For details summary */
}

.page-blog-what-is-s999-code__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-what-is-s999-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D;
}

.page-blog-what-is-s999-code__faq-item[open] .page-blog-what-is-s999-code__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-what-is-s999-code__faq-answer {
  padding: 15px 25px 25px;
  color: #A7D9B8;
  font-size: 0.95em;
  line-height: 1.5;
}

.page-blog-what-is-s999-code__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-what-is-s999-code__main-title {
    font-size: 2.8em;
  }
  .page-blog-what-is-s999-code__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-what-is-s999-code {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-what-is-s999-code__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-blog-what-is-s999-code__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-blog-what-is-s999-code__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-blog-what-is-s999-code__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-what-is-s999-code__btn-primary,
  .page-blog-what-is-s999-code__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-what-is-s999-code__content-area {
    padding: 30px 15px;
  }
  .page-blog-what-is-s999-code__container {
    padding: 0;
  }
  .page-blog-what-is-s999-code__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog-what-is-s999-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-what-is-s999-code__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-what-is-s999-code__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-blog-what-is-s999-code__cta-buttons--bottom {
    margin-top: 40px;
  }
  /* Ensure all containers and sections are full width and have padding */
  .page-blog-what-is-s999-code__hero-section,
  .page-blog-what-is-s999-code__content-area,
  .page-blog-what-is-s999-code__container,
  .page-blog-what-is-s999-code__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Specific override for button containers that might be flex */
  .page-blog-what-is-s999-code__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}