.page-blog-big79-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-blog-big79-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
}

.page-blog-big79-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.page-blog-big79-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-big79-latest-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-big79-latest-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-big79-latest-promotions__subtitle {
  font-size: clamp(1em, 1.8vw, 1.3em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-big79-latest-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-big79-latest-promotions__btn-primary,
.page-blog-big79-latest-promotions__btn-secondary,
.page-blog-big79-latest-promotions__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-big79-latest-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-big79-latest-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-big79-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-blog-big79-latest-promotions__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
}

.page-blog-big79-latest-promotions__btn-tertiary {
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  border: 1px solid #2E7A4E; /* Border */
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-blog-big79-latest-promotions__btn-tertiary:hover {
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
}

.page-blog-big79-latest-promotions__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  box-sizing: border-box;
}

.page-blog-big79-latest-promotions__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-big79-latest-promotions__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

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

.page-blog-big79-latest-promotions__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-blog-big79-latest-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.3);
}

.page-blog-big79-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-big79-latest-promotions__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-big79-latest-promotions__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-big79-latest-promotions__ordered-list,
.page-blog-big79-latest-promotions__unordered-list {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-big79-latest-promotions__ordered-list li,
.page-blog-big79-latest-promotions__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
}

.page-blog-big79-latest-promotions__ordered-list li strong {
  color: #57E38D; /* Glow */
}

.page-blog-big79-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-big79-latest-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-big79-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-big79-latest-promotions__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

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

.page-blog-big79-latest-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  text-align: justify;
}

.page-blog-big79-latest-promotions__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-big79-latest-promotions__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-big79-latest-promotions__cta-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  color: #F2C14E; /* Gold */
  margin-bottom: 25px;
  font-weight: 700;
}

.page-blog-big79-latest-promotions__btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* --- Responsive Styles --- */

/* Ensure all images are responsive by default */
.page-blog-big79-latest-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all image containers are responsive by default */
.page-blog-big79-latest-promotions__hero-image-wrapper,
.page-blog-big79-latest-promotions__card,
.page-blog-big79-latest-promotions__cta-section,
.page-blog-big79-latest-promotions__promotion-cards {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .page-blog-big79-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-big79-latest-promotions__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    width: 100%;
    max-width: none;
    background-color: rgba(0, 0, 0, 0.7); /* Add background for text readability on mobile */
    margin-top: -100px; /* Adjust to move content up if image is too tall */
    position: relative;
    top: auto;
    left: auto;
  }

  .page-blog-big79-latest-promotions__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-blog-big79-latest-promotions__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-big79-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-big79-latest-promotions__btn-primary,
  .page-blog-big79-latest-promotions__btn-secondary,
  .page-blog-big79-latest-promotions__btn-tertiary,
  .page-blog-big79-latest-promotions a[class*="button"],
  .page-blog-big79-latest-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-big79-latest-promotions__section,
  .page-blog-big79-latest-promotions__card,
  .page-blog-big79-latest-promotions__container,
  .page-blog-big79-latest-promotions__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-big79-latest-promotions__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-big79-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-blog-big79-latest-promotions__card-image,
  .page-blog-big79-latest-promotions__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important; /* Ensure min size on mobile */
    min-height: 200px !important;
  }

  .page-blog-big79-latest-promotions__promotion-cards {
    grid-template-columns: 1fr;
  }

  .page-blog-big79-latest-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-big79-latest-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog-big79-latest-promotions__cta-title {
    font-size: 1.5em;
  }

  .page-blog-big79-latest-promotions__btn-large {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-blog-big79-latest-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Contrast fix for hero text if background is too bright */
.page-blog-big79-latest-promotions__hero-content {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  padding: 30px;
  border-radius: 10px;
}