.page-blog-latest-f789-promotions {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-latest-f789-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden; /* Ensure no overflow from image */
}

.page-blog-latest-f789-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-latest-f789-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-latest-f789-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-f789-promotions__subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

/* Content Area */
.page-blog-latest-f789-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-latest-f789-promotions__text-block {
  background-color: #11271B; /* Card BG color */
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-latest-f789-promotions__section-title {
  font-size: 2em;
  color: #F2C14E; /* Gold color for section titles */
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid #1E3A2A; /* Divider color */
  padding-bottom: 10px;
}

.page-blog-latest-f789-promotions__sub-title {
  font-size: 1.5em;
  color: #2AD16F; /* Button top gradient color for sub titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-latest-f789-promotions p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-latest-f789-promotions__list,
.page-blog-latest-f789-promotions__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-latest-f789-promotions__list li,
.page-blog-latest-f789-promotions__ordered-list li {
  margin-bottom: 10px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-latest-f789-promotions__list li strong,
.page-blog-latest-f789-promotions__ordered-list li strong {
  color: #57E38D; /* Glow color for strong text */
}

.page-blog-latest-f789-promotions__image-content {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.page-blog-latest-f789-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-latest-f789-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box; /* Crucial for responsive buttons */
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word;
}

.page-blog-latest-f789-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

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

.page-blog-latest-f789-promotions__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-f789-promotions__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(34, 199, 104, 0.4);
}

/* FAQ Section */
.page-blog-latest-f789-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-latest-f789-promotions__faq-item {
  background-color: #0A4B2C; /* Deep Green color for FAQ item background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-latest-f789-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6; /* Main text color */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-latest-f789-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-latest-f789-promotions__faq-item summary {
  list-style: none;
}

.page-blog-latest-f789-promotions__faq-question:hover {
  background-color: #1E3A2A; /* Divider color for hover */
}

.page-blog-latest-f789-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-f789-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

.page-blog-latest-f789-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: #A7D9B8; /* Secondary text color */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-latest-f789-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-latest-f789-promotions__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em); /* Adjust H1 for mobile */
  }

  .page-blog-latest-f789-promotions__subtitle {
    font-size: 1em;
  }

  .page-blog-latest-f789-promotions__content-area {
    padding: 20px 15px;
  }

  .page-blog-latest-f789-promotions__text-block {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-blog-latest-f789-promotions__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-blog-latest-f789-promotions__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Images responsive */
  .page-blog-latest-f789-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Ensure containers with images are responsive */
  .page-blog-latest-f789-promotions__section,
  .page-blog-latest-f789-promotions__card,
  .page-blog-latest-f789-promotions__container,
  .page-blog-latest-f789-promotions__hero-section,
  .page-blog-latest-f789-promotions__content-area,
  .page-blog-latest-f789-promotions__text-block,
  .page-blog-latest-f789-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  
  /* Buttons responsive */
  .page-blog-latest-f789-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-latest-f789-promotions__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}