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

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

.page-index-about-new88__hero {
  background: linear-gradient(135deg, #0A246A, #1a3a8a);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-about-new88__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-about-new88__hero .page-index-about-new88__container {
  position: relative;
  z-index: 1;
}

.page-index-about-new88__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-about-new88__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

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

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

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

.page-index-about-new88__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-3px);
}

.page-index-about-new88__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

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

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

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

.page-index-about-new88__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-index-about-new88__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-index-about-new88__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.page-index-about-new88__vision-card {
  background-color: #0A246A;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-about-new88__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-about-new88__vision-card .page-index-about-new88__text {
  color: #e0e0e0;
  font-size: 1em;
}

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

.page-index-about-new88__list li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-index-about-new88__list li strong {
  color: #0A246A;
}

.page-index-about-new88__list--two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .page-index-about-new88__list--two-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-index-about-new88__container--cta {
  text-align: center;
}

.page-index-about-new88__cta-buttons {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-about-new88__title {
    font-size: 2.5em;
  }

  .page-index-about-new88__subtitle {
    font-size: 1.2em;
  }

  .page-index-about-new88__heading {
    font-size: 2em;
  }

  .page-index-about-new88__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-index-about-new88__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-about-new88__title {
    font-size: 2em;
  }

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

  .page-index-about-new88__heading {
    font-size: 1.8em;
  }

  .page-index-about-new88__section {
    padding: 40px 0;
  }
}