/* style/resources-new88-overview.css */

.page-resources-new88-overview {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-new88-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-new88-overview__hero-section {
  background: linear-gradient(135deg, #003366 0%, #003366 70%, #FFCC00 100%); /* Primary blue with a touch of gold */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-new88-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,darkblue,gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-new88-overview__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFCC00; /* Gold for main title on dark background */
  position: relative;
  z-index: 1;
}

.page-resources-new88-overview__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-resources-new88-overview__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}

.page-resources-new88-overview__button--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text on gold */
}

.page-resources-new88-overview__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources-new88-overview__button--secondary {
  background-color: #004d99; /* Slightly lighter blue */
  color: #ffffff;
  border: 2px solid #FFCC00;
}

.page-resources-new88-overview__button--secondary:hover {
  background-color: #003a7a;
  transform: translateY(-2px);
}

.page-resources-new88-overview__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-new88-overview__article-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1em;
  color: #555;
}

.page-resources-new88-overview__article-intro p {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-new88-overview__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-resources-new88-overview__heading {
  font-size: 2.2em;
  color: #003366; /* Dark blue for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 10px;
  font-weight: 700;
}

.page-resources-new88-overview__sub-heading {
  font-size: 1.6em;
  color: #004d99; /* Slightly lighter blue for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-new88-overview__article p {
  margin-bottom: 15px;
  color: #444;
}

.page-resources-new88-overview__article strong {
  color: #003366;
}

.page-resources-new88-overview__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-new88-overview__list li {
  margin-bottom: 10px;
  color: #444;
}

.page-resources-new88-overview__numbered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-new88-overview__numbered-list li {
  margin-bottom: 10px;
  color: #444;
}

.page-resources-new88-overview__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-new88-overview__image--fullwidth {
  width: 100%;
  margin-bottom: 40px;
}

.page-resources-new88-overview__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .page-resources-new88-overview__hero-title {
    font-size: 2.5em;
  }
  .page-resources-new88-overview__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-new88-overview__heading {
    font-size: 1.8em;
  }
  .page-resources-new88-overview__sub-heading {
    font-size: 1.4em;
  }
  .page-resources-new88-overview__article {
    padding: 20px;
  }
  .page-resources-new88-overview__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-new88-overview__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-new88-overview__hero-title {
    font-size: 2em;
  }
  .page-resources-new88-overview__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-new88-overview__heading {
    font-size: 1.6em;
  }
  .page-resources-new88-overview__sub-heading {
    font-size: 1.2em;
  }
  .page-resources-new88-overview__button {
    width: 90%;
    max-width: 300px;
  }
  .page-resources-new88-overview__cta-group {
    gap: 15px;
  }
}