.page-blog-latest-promotions-and-benefits {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
}

.page-blog-latest-promotions-and-benefits__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  background-color: var(--bg-color);
}

.page-blog-latest-promotions-and-benefits__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-blog-latest-promotions-and-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-blog-latest-promotions-and-benefits__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with opacity */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-top: 50px;
}

.page-blog-latest-promotions-and-benefits__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px var(--glow);
}

.page-blog-latest-promotions-and-benefits__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-blog-latest-promotions-and-benefits__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-promotions-and-benefits__btn-primary,
.page-blog-latest-promotions-and-benefits__btn-secondary,
.page-blog-latest-promotions-and-benefits__card-button,
.page-blog-latest-promotions-and-benefits__event-button {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions-and-benefits__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-latest-promotions-and-benefits__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-latest-promotions-and-benefits__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-blog-latest-promotions-and-benefits__btn-secondary:hover {
  background-color: var(--border);
  color: #ffffff;
}

.page-blog-latest-promotions-and-benefits__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-latest-promotions-and-benefits__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-latest-promotions-and-benefits__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 0 5px rgba(87, 227, 141, 0.3);
}

.page-blog-latest-promotions-and-benefits p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-and-benefits strong {
  color: var(--text-main);
}

.page-blog-latest-promotions-and-benefits__card-grid,
.page-blog-latest-promotions-and-benefits__event-grid,
.page-blog-latest-promotions-and-benefits__vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-latest-promotions-and-benefits__card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.page-blog-latest-promotions-and-benefits__card-image,
.page-blog-latest-promotions-and-benefits__event-image,
.page-blog-latest-promotions-and-benefits__vip-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-latest-promotions-and-benefits__card-title,
.page-blog-latest-promotions-and-benefits__event-title,
.page-blog-latest-promotions-and-benefits__vip-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-blog-latest-promotions-and-benefits__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-and-benefits__card-button {
  margin-top: auto;
  padding: 12px 25px;
  font-size: 0.9rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  align-self: center;
}

.page-blog-latest-promotions-and-benefits__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-latest-promotions-and-benefits__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-and-benefits__ordered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1rem;
}

.page-blog-latest-promotions-and-benefits__ordered-list li strong {
  color: var(--text-main);
}

.page-blog-latest-promotions-and-benefits__event-date {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-and-benefits__note-text {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-and-benefits__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-latest-promotions-and-benefits__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-latest-promotions-and-benefits__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--divider);
  overflow: hidden;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-and-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid transparent; /* Hide default border for details */
  list-style: none;
}

.page-blog-latest-promotions-and-benefits__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-and-benefits__faq-item[open] .page-blog-latest-promotions-and-benefits__faq-question {
  border-bottom: 1px solid var(--divider);
}

.page-blog-latest-promotions-and-benefits__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-promotions-and-benefits__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--gold);
}

.page-blog-latest-promotions-and-benefits__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-and-benefits__faq-answer p {
  margin-bottom: 0;
}

/* Color Contrast Adjustments for Dark Backgrounds */
.page-blog-latest-promotions-and-benefits__dark-bg {
  background-color: var(--bg-color);
  color: var(--text-main);
}

.page-blog-latest-promotions-and-benefits__dark-bg .page-blog-latest-promotions-and-benefits__section-title,
.page-blog-latest-promotions-and-benefits__dark-bg .page-blog-latest-promotions-and-benefits__main-title {
  color: var(--text-main);
}

.page-blog-latest-promotions-and-benefits__dark-bg .page-blog-latest-promotions-and-benefits__description,
.page-blog-latest-promotions-and-benefits__dark-bg p,
.page-blog-latest-promotions-and-benefits__dark-bg li {
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-and-benefits__hero-content {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-and-benefits__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-blog-latest-promotions-and-benefits__hero-content {
    padding: 15px;
  }

  .page-blog-latest-promotions-and-benefits__main-title {
    font-size: 2rem;
  }

  .page-blog-latest-promotions-and-benefits__description {
    font-size: 0.95rem;
  }

  .page-blog-latest-promotions-and-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-promotions-and-benefits__btn-primary,
  .page-blog-latest-promotions-and-benefits__btn-secondary,
  .page-blog-latest-promotions-and-benefits__card-button,
  .page-blog-latest-promotions-and-benefits__event-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions-and-benefits__section {
    padding: 40px 15px;
  }

  .page-blog-latest-promotions-and-benefits__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-and-benefits p,
  .page-blog-latest-promotions-and-benefits li {
    font-size: 0.9rem;
  }

  .page-blog-latest-promotions-and-benefits__card-grid,
  .page-blog-latest-promotions-and-benefits__event-grid,
  .page-blog-latest-promotions-and-benefits__vip-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-promotions-and-benefits__card-image,
  .page-blog-latest-promotions-and-bonaefits__event-image,
  .page-blog-latest-promotions-and-benefits__vip-image {
    height: 180px;
  }

  .page-blog-latest-promotions-and-benefits__card-title,
  .page-blog-latest-promotions-and-benefits__event-title,
  .page-blog-latest-promotions-and-benefits__vip-title {
    font-size: 1.2rem;
  }

  .page-blog-latest-promotions-and-benefits__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-latest-promotions-and-benefits__faq-answer {
    font-size: 0.85rem;
  }

  /* Image responsive adaptions */
  .page-blog-latest-promotions-and-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-and-benefits__hero-image-wrapper,
  .page-blog-latest-promotions-and-benefits__card,
  .page-blog-latest-promotions-and-benefits__event-card,
  .page-blog-latest-promotions-and-benefits__vip-card,
  .page-blog-latest-promotions-and-benefits__section,
  .page-blog-latest-promotions-and-benefits__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-latest-promotions-and-benefits__cta-buttons {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-blog-latest-promotions-and-benefits__cta-buttons a {
    width: 100%;
  }
}