.page-about-mu88 {
  color: #333333; /* Default dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-about-mu88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #017439, #005f2e); /* Darker green gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-about-mu88__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-about-mu88__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Register and Login font color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-mu88__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  color: #ffffff;
}

.page-about-mu88__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-about-mu88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-about-mu88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about-mu88__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-about-mu88__btn-primary:hover {
  background: #e02a2a;
  border-color: #e02a2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about-mu88__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-about-mu88__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-about-mu88__section {
  padding: 80px 20px;
  text-align: center;
}

.page-about-mu88__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #017439;
}

.page-about-mu88__text-block {
  max-width: 900px;
  margin: 0 auto 25px auto;
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  text-align: left;
}

.page-about-mu88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-about-mu88__introduction .page-about-mu88__text-block, 
.page-about-mu88__app-experience .page-about-mu88__text-block,
.page-about-mu88__customer-support .page-about-mu88__text-block {
  text-align: center;
}

.page-about-mu88__image-content {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-about-mu88__image-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-about-mu88__image-content--right {
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
}

.page-about-mu88__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-about-mu88__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-about-mu88__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-about-mu88__card img {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-about-mu88__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439;
}

.page-about-mu88__card-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-about-mu88__card-title a:hover {
  color: #005f2e;
  text-decoration: underline;
}

.page-about-mu88__card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

.page-about-mu88__cta-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-about-mu88__dark-bg {
  background: #017439;
  color: #ffffff;
}

.page-about-mu88__dark-bg .page-about-mu88__section-title {
  color: #ffffff;
}

.page-about-mu88__dark-bg .page-about-mu88__text-block {
  color: #f0f0f0;
}

.page-about-mu88__light-bg {
  background: #f9f9f9;
  color: #333333;
}

.page-about-mu88__feature-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  text-align: left;
}

.page-about-mu88__feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about-mu88__dark-bg .page-about-mu88__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about-mu88__feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFF00; /* Register/Login font color for emphasis */
}

.page-about-mu88__feature-item p {
  font-size: 15px;
  color: #f0f0f0;
}

.page-about-mu88__contact-channels {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-about-mu88__contact-channels li {
  font-size: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-about-mu88__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #FFFF00; /* Icon color for visibility */
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.page-about-mu88__icon--livechat {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h10v2H7V9zm0 4h7v2H7v-2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12zM7 9h10v2H7V9zm0 4h7v2H7v-2z"/></svg>');
}

.page-about-mu88__icon--hotline {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2 0 10.6 8.4 19 19 19 1.1 0 2-.9 2-2v-2.5c0-1.1-.9-2-2-2zm-1.5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5h14.5zM19 4h-2.5c-.83 0-1.5-.67-1.5-1.5S15.67 1 16.5 1H19c.83 0 1.5.67 1.5 1.5S19.83 4 19 4z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.01.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.2c.28-.28.36-.67.25-1.02C8.7 6.45 8.5 5.25 8.5 4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2 0 10.6 8.4 19 19 19 1.1 0 2-.9 2-2v-2.5c0-1.1-.9-2-2-2zm-1.5 0c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5H4c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5h14.5zM19 4h-2.5c-.83 0-1.5-.67-1.5-1.5S15.67 1 16.5 1H19c.83 0 1.5.67 1.5 1.5S19.83 4 19 4z"/></svg>');
}

.page-about-mu88__icon--email {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.page-about-mu88__faq {
  padding-bottom: 80px;
}

.page-about-mu88__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-about-mu88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-about-mu88__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #f9f9f9;
  color: #333333;
}

.page-about-mu88__faq-item.active .page-about-mu88__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-about-mu88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-about-mu88__faq-item:last-child .page-about-mu88__faq-question {
  border-bottom: none;
}

.page-about-mu88__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-about-mu88__faq-question:active {
  background: #eeeeee;
}

.page-about-mu88__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-about-mu88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #017439;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-about-mu88__faq-item.active .page-about-mu88__faq-toggle {
  color: #C30808;
  transform: rotate(45deg); /* Change to X for active */
}

.page-about-mu88__highlight-text {
  color: #C30808;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-about-mu88__hero-title {
    font-size: 42px;
  }
  .page-about-mu88__section-title {
    font-size: 32px;
  }
  .page-about-mu88__image-content--right {
    float: none;
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .page-about-mu88__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about-mu88__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-about-mu88__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-about-mu88__hero-image img {
    border-radius: 8px;
  }
  .page-about-mu88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-about-mu88__section {
    padding: 50px 15px;
  }
  .page-about-mu88__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-about-mu88__text-block {
    font-size: 16px;
    text-align: left;
  }
  .page-about-mu88__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-about-mu88__card img {
    
  }
  .page-about-mu88__card-title {
    font-size: 20px;
  }
  .page-about-mu88__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-about-mu88__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px auto;
  }
  .page-about-mu88__feature-title {
    font-size: 18px;
  }
  .page-about-mu88__contact-channels li {
    font-size: 16px;
    justify-content: flex-start;
  }
  .page-about-mu88__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-about-mu88__faq-question h3 {
    font-size: 15px;
    width: calc(100% - 40px);
  }
  .page-about-mu88__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-about-mu88__faq-answer {
    padding: 0 15px;
  }
  .page-about-mu88__faq-item.active .page-about-mu88__faq-answer {
    padding: 15px !important;
  }
  .page-about-mu88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-about-mu88__section,
  .page-about-mu88__card,
  .page-about-mu88__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}