.page-blog-mastering-98wim-code {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-mastering-98wim-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 */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-mastering-98wim-code__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-mastering-98wim-code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-mastering-98wim-code__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-mastering-98wim-code__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-mastering-98wim-code__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-mastering-98wim-code__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 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-mastering-98wim-code__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-mastering-98wim-code__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-blog-mastering-98wim-code__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-mastering-98wim-code__section:last-of-type {
  border-bottom: none;
}

.page-blog-mastering-98wim-code__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-mastering-98wim-code__section-title {
  font-size: 2.2em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-mastering-98wim-code__sub-title {
  font-size: 1.6em;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-mastering-98wim-code__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-mastering-98wim-code__text-block strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-mastering-98wim-code__text-block a {
  color: #2AD16F; /* Button primary color */
  text-decoration: underline;
  transition: color 0.2s ease;
}

.page-blog-mastering-98wim-code__text-block a:hover {
  color: #57E38D; /* Glow */
}

.page-blog-mastering-98wim-code__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-blog-mastering-98wim-code__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-mastering-98wim-code__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-mastering-98wim-code__list-item strong {
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-blog-mastering-98wim-code__faq-list {
  margin-top: 30px;
}

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

.page-blog-mastering-98wim-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-mastering-98wim-code__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-mastering-98wim-code__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-mastering-98wim-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-blog-mastering-98wim-code__faq-item[open] .page-blog-mastering-98wim-code__faq-toggle {
  content: '−';
}

.page-blog-mastering-98wim-code__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
  line-height: 1.7;
}

.page-blog-mastering-98wim-code__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-mastering-98wim-code__faq-answer strong {
  color: #F2FFF6; /* Text Main */
}

/* Floating Buttons */
.page-blog-mastering-98wim-code__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-blog-mastering-98wim-code__floating-button {
  display: block;
  padding: 12px 20px;
  border-radius: 50px;
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-mastering-98wim-code__floating-button--register {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-mastering-98wim-code__floating-button--login {
  background: #2E7A4E; /* Border color for login, or another brand accent */
  border: 1px solid #57E38D;
}

.page-blog-mastering-98wim-code__floating-button:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-mastering-98wim-code__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-blog-mastering-98wim-code__section-title {
    font-size: 2em;
  }
  .page-blog-mastering-98wim-code__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-mastering-98wim-code {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mastering-98wim-code__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-mastering-98wim-code__main-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-mastering-98wim-code__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-mastering-98wim-code__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-mastering-98wim-code__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-blog-mastering-98wim-code__section {
    padding: 40px 0;
  }

  .page-blog-mastering-98wim-code__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-mastering-98wim-code__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-mastering-98wim-code__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-mastering-98wim-code__text-block,
  .page-blog-mastering-98wim-code__list-item {
    font-size: 1em;
  }

  .page-blog-mastering-98wim-code__content-image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-mastering-98wim-code__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-blog-mastering-98wim-code__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 1em;
  }

  .page-blog-mastering-98wim-code__floating-buttons {
    bottom: 15px;
    right: 15px;
    flex-direction: row;
    gap: 8px;
  }

  .page-blog-mastering-98wim-code__floating-button {
    padding: 10px 15px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: auto !important; /* Allow buttons to size to content */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  /* Ensure images within any container are responsive */
  .page-blog-mastering-98wim-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-mastering-98wim-code__hero-image-wrapper,
  .page-blog-mastering-98wim-code__content-area,
  .page-blog-mastering-98wim-code__section,
  .page-blog-mastering-98wim-code__container,
  .page-blog-mastering-98wim-code__faq-list,
  .page-blog-mastering-98wim-code__faq-item,
  .page-blog-mastering-98wim-code__floating-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-mastering-98wim-code__floating-buttons {
    flex-direction: column;
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
  }
  .page-blog-mastering-98wim-code__floating-button {
    width: 100% !important;
  }
}