/* style/index-about-m88.css */
.page-index-about-m88 {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-index-about-m88__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-about-m88__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern_dark]'); /* Subtle background pattern */
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-about-m88__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Highlight color for title */
  position: relative;
  z-index: 1;
}

.page-index-about-m88__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-index-about-m88__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-index-about-m88__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-index-about-m88__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-index-about-m88__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-about-m88__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-about-m88__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-index-about-m88__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-about-m88__section {
  padding: 60px 0;
}

.page-index-about-m88__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-about-m88__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-about-m88__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-about-m88__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px;
  color: #555;
}

.page-index-about-m88__highlight {
  color: #FFD700;
}

.page-index-about-m88__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-index-about-m88__content-grid:nth-child(even) .page-index-about-m88__image-wrapper {
  order: 2;
}

.page-index-about-m88__text-content {
  flex: 1;
  min-width: 300px;
}

.page-index-about-m88__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-about-m88__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-about-m88__subsection-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-about-m88__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-about-m88__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-index-about-m88__feature-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-about-m88__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-about-m88__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-about-m88__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-about-m88__feature-card p {
  color: #666;
}

.page-index-about-m88__link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  position: relative;
}

.page-index-about-m88__link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFD700;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.page-index-about-m88__link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.page-index-about-m88__official-links .page-index-about-m88__link-box {
  background-color: #0A2463;
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-about-m88__official-links .page-index-about-m88__link-box p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-index-about-m88__warning {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #dc3545;
  font-weight: bold;
}

.page-index-about-m88__cta-banner {
  background: linear-gradient(90deg, #0A2463, #1A3F83);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-about-m88__cta-banner .page-index-about-m88__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-about-m88__cta-content {
  flex: 2;
  text-align: left;
  min-width: 300px;
}

.page-index-about-m88__cta-image {
  flex: 1;
  text-align: right;
  min-width: 250px;
}

.page-index-about-m88__cta-image .page-index-about-m88__image {
  max-width: 300px;
  box-shadow: none;
}

.page-index-about-m88__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-about-m88__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-about-m88__faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.page-index-about-m88__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-about-m88__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-about-m88__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-about-m88__faq-answer {
  font-size: 1.05em;
  color: #555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
  display: none;
}

.page-index-about-m88__faq-answer.active {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-about-m88__hero-title {
    font-size: 2.5em;
  }
  .page-index-about-m88__section-title {
    font-size: 2em;
  }
  .page-index-about-m88__content-grid {
    flex-direction: column;
  }
  .page-index-about-m88__content-grid:nth-child(even) .page-index-about-m88__image-wrapper {
    order: unset;
  }
  .page-index-about-m88__cta-banner .page-index-about-m88__container {
    flex-direction: column;
    text-align: center;
  }
  .page-index-about-m88__cta-content {
    text-align: center;
  }
  .page-index-about-m88__cta-image {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-index-about-m88__hero {
    padding: 80px 0;
  }
  .page-index-about-m88__hero-title {
    font-size: 2em;
  }
  .page-index-about-m88__hero-description {
    font-size: 1em;
  }
  .page-index-about-m88__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-about-m88__button {
    width: 100%;
    max-width: 280px;
  }
  .page-index-about-m88__section-title {
    font-size: 1.8em;
  }
  .page-index-about-m88__feature-title {
    font-size: 1.3em;
  }
  .page-index-about-m88__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-index-about-m88__hero-title {
    font-size: 1.8em;
  }
  .page-index-about-m88__section-title {
    font-size: 1.6em;
  }
  .page-index-about-m88__cta-title {
    font-size: 1.8em;
  }
  .page-index-about-m88__faq-question {
    font-size: 1.2em;
  }
}