.page-index-about-mb66b9 {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--bg-color); /* Inherited from body, but explicitly set for sections */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-about-mb66b9__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: var(--bg-color);
  overflow: hidden;
}

.page-index-about-mb66b9__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-index-about-mb66b9__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-index-about-mb66b9__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 0 20px;
}

.page-index-about-mb66b9__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Using clamp for responsive H1 */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-about-mb66b9__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-index-about-mb66b9__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-index-about-mb66b9__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
}

.page-index-about-mb66b9__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-index-about-mb66b9__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index-about-mb66b9__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.page-index-about-mb66b9__section {
  padding: 60px 20px;
  text-align: center;
}

.page-index-about-mb66b9__dark-bg {
  background-color: var(--bg-color);
  color: var(--text-main-color);
}

.page-index-about-mb66b9__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-index-about-mb66b9__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-about-mb66b9__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--gold-color);
  font-weight: bold;
}

.page-index-about-mb66b9__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-about-mb66b9__text-block {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 1.1em;
  color: var(--text-main-color);
}

.page-index-about-mb66b9__text-block p {
  margin-bottom: 15px;
}

.page-index-about-mb66b9__text-block p, 
.page-index-about-mb66b9__list-item {
  color: var(--text-main-color); /* Ensure text color for dark background */
}

.page-index-about-mb66b9__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
  text-align: left;
}

.page-index-about-mb66b9__list-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
}

.page-index-about-mb66b9__list-item::before {
  content: '✔';
  color: var(--gold-color);
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-about-mb66b9__list-year {
  font-weight: bold;
  color: var(--gold-color);
}

.page-index-about-mb66b9__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-index-about-mb66b9__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.page-index-about-mb66b9__card {
  background-color: var(--card-bg-color);
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-main-color);
}

.page-index-about-mb66b9__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-about-mb66b9__card-text {
  font-size: 1em;
  color: var(--text-secondary-color);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-about-mb66b9__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency in cards */
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content is short */
}

.page-index-about-mb66b9__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-index-about-mb66b9__cta-section {
  background: var(--deep-green-color);
  color: var(--text-main-color);
  padding: 80px 20px;
}

.page-index-about-mb66b9__faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-index-about-mb66b9__faq-item {
  background-color: #f8f8f8; /* Light background for FAQ items */
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-about-mb66b9__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #e9e9e9; /* Slightly darker for contrast */
  color: #333333;
  list-style: none; /* For details/summary */
  outline: none;
}

.page-index-about-mb66b9__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-about-mb66b9__faq-qtext {
  color: #333333;
}

.page-index-about-mb66b9__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

.page-index-about-mb66b9__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-index-about-mb66b9__hero-section {
    padding: 10px 15px 40px;
  }

  .page-index-about-mb66b9__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-index-about-mb66b9__intro-text {
    font-size: 1em;
  }

  .page-index-about-mb66b9__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-index-about-mb66b9__sub-title {
    font-size: 1.5em;
  }

  .page-index-about-mb66b9__text-block, 
  .page-index-about-mb66b9__list {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-index-about-mb66b9__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-index-about-mb66b9__card {
    padding: 20px;
  }

  .page-index-about-mb66b9__card-image {
    height: 180px;
  }

  .page-index-about-mb66b9__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-index-about-mb66b9__cta-button {
    width: 100%;
    max-width: 100% !important;
    padding: 12px 15px;
  }

  .page-index-about-mb66b9__faq-container {
    padding: 0 15px;
  }

  .page-index-about-mb66b9__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-index-about-mb66b9__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Responsive images */
  .page-index-about-mb66b9 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Responsive containers for images/content */
  .page-index-about-mb66b9__section,
  .page-index-about-mb66b9__card,
  .page-index-about-mb66b9__container,
  .page-index-about-mb66b9__hero-image-wrapper,
  .page-index-about-mb66b9__button-group,
  .page-index-about-mb66b9__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-index-about-mb66b9__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
  }

  .page-index-about-mb66b9__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific overrides for text blocks in light background to ensure contrast */
  .page-index-about-mb66b9__light-bg .page-index-about-mb66b9__text-block p,
  .page-index-about-mb66b9__light-bg .page-index-about-mb66b9__list-item,
  .page-index-about-mb66b9__light-bg .page-index-about-mb66b9__faq-answer p {
    color: #333333 !important;
  }

  .page-index-about-mb66b9__light-bg .page-index-about-mb66b9__section-title,
  .page-index-about-mb66b9__light-bg .page-index-about-mb66b9__sub-title {
    color: var(--primary-color) !important; /* Ensure brand color on light background */
  }
}