/* style/blog-what-is-188bey-code.css */
.page-blog-what-is-188bey-code {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-what-is-188bey-code__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-what-is-188bey-code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 500px;
}

.page-blog-what-is-188bey-code__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: 20px; /* Space from top edge, below image */
  padding: 20px;
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency for readability */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-blog-what-is-188bey-code__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-what-is-188bey-code__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-what-is-188bey-code__btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-what-is-188bey-code__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  box-sizing: border-box;
}

.page-blog-what-is-188bey-code__section-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-what-is-188bey-code__section-title {
  color: #57E38D; /* Glow */
  font-size: 2.2em;
  margin-bottom: 25px;
  padding-top: 20px;
  border-bottom: 2px solid #2E7A4E; /* Border color */
  padding-bottom: 10px;
}

.page-blog-what-is-188bey-code__sub-title {
  color: #F2C14E; /* Gold */
  font-size: 1.6em;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-blog-what-is-188bey-code__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-188bey-code__paragraph strong {
  color: #F2C14E; /* Gold */
}

.page-blog-what-is-188bey-code__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-188bey-code__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-what-is-188bey-code__list-item {
  margin-bottom: 10px;
}

.page-blog-what-is-188bey-code__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-what-is-188bey-code__faq-list {
  margin-top: 40px;
  border-top: 1px solid #2E7A4E; /* Border color */
  padding-top: 20px;
}

.page-blog-what-is-188bey-code__faq-item {
  margin-bottom: 15px;
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-what-is-188bey-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

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

.page-blog-what-is-188bey-code__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-what-is-188bey-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-blog-what-is-188bey-code__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.7;
}

.page-blog-what-is-188bey-code__faq-item[open] .page-blog-what-is-188bey-code__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-what-is-188bey-code__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  box-sizing: border-box;
}

.page-blog-what-is-188bey-code__cta-title {
  color: #F2FFF6; /* Text Main */
  font-size: 2.5em;
  margin-bottom: 25px;
}

.page-blog-what-is-188bey-code__cta-description {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-what-is-188bey-code__hero-content {
    max-width: 700px;
  }
  .page-blog-what-is-188bey-code__main-title {
    font-size: 2.5em;
  }
  .page-blog-what-is-188bey-code__section-title {
    font-size: 2em;
  }
  .page-blog-what-is-188bey-code__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-what-is-188bey-code__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-what-is-188bey-code__hero-image {
    max-height: 350px;
  }
  .page-blog-what-is-188bey-code__hero-content {
    max-width: 95%;
    padding: 15px;
  }
  .page-blog-what-is-188bey-code__main-title {
    font-size: 2em;
    max-width: 100%;
  }
  .page-blog-what-is-188bey-code__hero-description {
    font-size: 1em;
  }
  .page-blog-what-is-188bey-code__btn-primary {
    padding: 12px 25px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-what-is-188bey-code__content-area {
    padding: 40px 15px;
  }
  .page-blog-what-is-188bey-code__section-title {
    font-size: 1.8em;
  }
  .page-blog-what-is-188bey-code__sub-title {
    font-size: 1.3em;
  }
  .page-blog-what-is-188bey-code__paragraph,
  .page-blog-what-is-188bey-code__list-item,
  .page-blog-what-is-188bey-code__faq-answer p {
    font-size: 0.95em;
  }
  .page-blog-what-is-188bey-code__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    box-sizing: border-box !important;
  }
  .page-blog-what-is-188bey-code__cta-title {
    font-size: 1.8em;
  }
  .page-blog-what-is-188bey-code__cta-description {
    font-size: 1em;
  }
  .page-blog-what-is-188bey-code__section-container,
  .page-blog-what-is-188bey-code__faq-list,
  .page-blog-what-is-188bey-code__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-what-is-188bey-code__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-what-is-188bey-code__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-what-is-188bey-code__main-title {
    font-size: 1.8em;
  }
  .page-blog-what-is-188bey-code__section-title {
    font-size: 1.6em;
  }
  .page-blog-what-is-188bey-code__sub-title {
    font-size: 1.2em;
  }
  .page-blog-what-is-188bey-code__cta-title {
    font-size: 1.6em;
  }
}