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

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

.page-resources-new88-latest-promotions__hero {
  background: linear-gradient(135deg, #003366, #336699);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-resources-new88-latest-promotions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23004080" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.1"/></svg>');
  opacity: 0.1;
  z-index: 0;
}

.page-resources-new88-latest-promotions__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
  text-align: left;
  padding-left: 20px; /* Adjust for image on right */
}

.page-resources-new88-latest-promotions__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-right: 20px;
}

.page-resources-new88-latest-promotions__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-new88-latest-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFCC00; /* Contrast for title */
}

.page-resources-new88-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-resources-new88-latest-promotions__hero-actions {
  display: flex;
  gap: 20px;
}

.page-resources-new88-latest-promotions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.page-resources-new88-latest-promotions__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-resources-new88-latest-promotions__button--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-resources-new88-latest-promotions__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border-color: #FFCC00;
}

.page-resources-new88-latest-promotions__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-resources-new88-latest-promotions__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 30px;
}

.page-resources-new88-latest-promotions__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-new88-latest-promotions__section:nth-child(even) {
  background-color: #f0f4f8; /* Light blue-gray for contrast */
}

.page-resources-new88-latest-promotions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-new88-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-resources-new88-latest-promotions__text-content {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-new88-latest-promotions__text-content a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__text-content a:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-resources-new88-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new88-latest-promotions__promo-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-new88-latest-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-new88-latest-promotions__promo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-resources-new88-latest-promotions__promo-card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__promo-card-description {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-new88-latest-promotions__ordered-list,
.page-resources-new88-latest-promotions__unordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources-new88-latest-promotions__ordered-list li,
.page-resources-new88-latest-promotions__unordered-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  position: relative;
  padding-left: 30px;
  text-align: justify;
}

.page-resources-new88-latest-promotions__ordered-list li strong {
  color: #003366;
}

.page-resources-new88-latest-promotions__ordered-list li::before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #FFCC00;
  font-size: 1.2em;
}

.page-resources-new88-latest-promotions__unordered-list li::before {
  content: '\2022'; /* Bullet point */
  color: #FFCC00;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-resources-new88-latest-promotions__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-new88-latest-promotions__faq {
  background-color: #f0f4f8;
}

.page-resources-new88-latest-promotions__faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-new88-latest-promotions__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__faq-answer {
  font-size: 1.05em;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.page-resources-new88-latest-promotions__cta {
  text-align: center;
  background: linear-gradient(135deg, #003366, #002244);
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
  margin-bottom: 0; /* No margin at the end */
}

.page-resources-new88-latest-promotions__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
}

.page-resources-new88-latest-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-resources-new88-latest-promotions__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-new88-latest-promotions .highlight {
  color: #FFCC00;
}

.page-resources-new88-latest-promotions .bold-text {
  font-weight: bold;
  color: #003366;
}

.page-resources-new88-latest-promotions__section:nth-child(even) .bold-text {
  color: #002244; /* Slightly darker bold text for even sections */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-new88-latest-promotions__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .page-resources-new88-latest-promotions__hero-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .page-resources-new88-latest-promotions__hero-image-wrapper {
    padding: 20px;
  }

  .page-resources-new88-latest-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-resources-new88-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-new88-latest-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-new88-latest-promotions__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-resources-new88-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-resources-new88-latest-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-new88-latest-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-new88-latest-promotions__hero {
    padding: 50px 0;
  }

  .page-resources-new88-latest-promotions__hero-title {
    font-size: 2em;
  }

  .page-resources-new88-latest-promotions__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-new88-latest-promotions__section {
    padding: 40px 0;
  }

  .page-resources-new88-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-resources-new88-latest-promotions__text-content,
  .page-resources-new88-latest-promotions__promo-card-description,
  .page-resources-new88-latest-promotions__ordered-list li,
  .page-resources-new88-latest-promotions__unordered-list li,
  .page-resources-new88-latest-promotions__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-new88-latest-promotions__promo-card-title {
    font-size: 1.4em;
  }

  .page-resources-new88-latest-promotions__faq-question {
    font-size: 1.2em;
  }

  .page-resources-new88-latest-promotions__cta-title {
    font-size: 1.8em;
  }

  .page-resources-new88-latest-promotions__cta-description {
    font-size: 1em;
  }

  .page-resources-new88-latest-promotions__cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-new88-latest-promotions__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-new88-latest-promotions__hero-title {
    font-size: 1.8em;
  }

  .page-resources-new88-latest-promotions__section-title {
    font-size: 1.6em;
  }

  .page-resources-new88-latest-promotions__cta-title {
    font-size: 1.6em;
  }

  .page-resources-new88-latest-promotions__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}