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

.page-promotions-latest-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions-latest-offers__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top from header-offset */
  background-color: #08160F;
}

.page-promotions-latest-offers__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent overly tall hero on desktop */
  overflow: hidden;
}

.page-promotions-latest-offers__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-latest-offers__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content slightly over image for visual appeal */
  background: #11271B; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
}

.page-promotions-latest-offers__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-latest-offers__hero-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-promotions-latest-offers__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
  box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-promotions-latest-offers__btn-secondary:hover {
  background: #57E38D;
  color: #08160F;
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
  transform: translateY(-2px);
}

.page-promotions-latest-offers__overview-section,
.page-promotions-latest-offers__categories-section,
.page-promotions-latest-offers__how-to-claim-section,
.page-promotions-latest-offers__terms-section,
.page-promotions-latest-offers__why-choose-section,
.page-promotions-latest-offers__faq-section,
.page-promotions-latest-offers__cta-bottom-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-latest-offers__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions-latest-offers__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-promotions-latest-offers__text-block a {
  color: #57E38D;
  text-decoration: underline;
}

.page-promotions-latest-offers__text-block a:hover {
  color: #2AD16F;
}

.page-promotions-latest-offers__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-latest-offers__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-latest-offers__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-latest-offers__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-latest-offers__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin: 20px 20px 10px 20px;
}

.page-promotions-latest-offers__card-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
  flex-grow: 1;
}

.page-promotions-latest-offers__card-link {
  display: inline-block;
  margin: 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-align: center;
}

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

.page-promotions-latest-offers__cta-center {
  text-align: center;
  margin-top: 50px;
}

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

.page-promotions-latest-offers__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-latest-offers__step-icon {
  width: 60px;
  height: 60px;
  background-color: #22C768; /* Auxiliary Color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #08160F; /* Background */
  margin: 0 auto 20px auto;
}

.page-promotions-latest-offers__step-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-promotions-latest-offers__step-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-latest-offers__step-description a {
  color: #57E38D;
  text-decoration: underline;
}

.page-promotions-latest-offers__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-latest-offers__terms-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-promotions-latest-offers__terms-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-promotions-latest-offers__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-promotions-latest-offers__advantages-list li {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-latest-offers__advantages-list li a {
  color: #57E38D;
  text-decoration: underline;
}

.page-promotions-latest-offers__faq-list {
  margin-top: 40px;
}

.page-promotions-latest-offers__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions-latest-offers__faq-item details > summary {
  list-style: none;
}

.page-promotions-latest-offers__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider for contrast */
  border-bottom: 1px solid transparent; /* Placeholder for active state */
  transition: background-color 0.3s ease, color 0.3s ease, border-bottom 0.3s ease;
}

.page-promotions-latest-offers__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2C14E;
}

.page-promotions-latest-offers__faq-item[open] .page-promotions-latest-offers__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-promotions-latest-offers__faq-qtext {
  flex-grow: 1;
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 24px;
  margin-left: 15px;
  color: #57E38D;
  transition: transform 0.3s ease;
}

.page-promotions-latest-offers__faq-item[open] .page-promotions-latest-offers__faq-toggle {
  transform: rotate(45deg);
  color: #F2C14E;
}

.page-promotions-latest-offers__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.8;
}

.page-promotions-latest-offers__faq-answer a {
  color: #57E38D;
  text-decoration: underline;
}

.page-promotions-latest-offers__cta-bottom-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions-latest-offers__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    transform: translateY(-25%);
  }

  .page-promotions-latest-offers__main-title {
    font-size: 28px;
  }

  .page-promotions-latest-offers__hero-description {
    font-size: 16px;
  }

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

  .page-promotions-latest-offers__btn-primary,
  .page-promotions-latest-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-promotions-latest-offers__section-title {
    font-size: 24px;
  }

  .page-promotions-latest-offers__text-block,
  .page-promotions-latest-offers__terms-list li,
  .page-promotions-latest-offers__advantages-list li,
  .page-promotions-latest-offers__step-description,
  .page-promotions-latest-offers__faq-answer {
    font-size: 15px;
  }

  .page-promotions-latest-offers__card-grid,
  .page-promotions-latest-offers__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-latest-offers__card-image {
    height: 180px;
  }

  .page-promotions-latest-offers__card-title {
    font-size: 20px;
  }

  .page-promotions-latest-offers__step-title {
    font-size: 18px;
  }

  .page-promotions-latest-offers__faq-question {
    font-size: 16px;
    padding: 15px;
  }

  .page-promotions-latest-offers__faq-answer {
    padding: 0 15px 15px 15px;
  }

  /* Ensure all images are responsive */
  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all video elements are responsive */
  .page-promotions-latest-offers video,
  .page-promotions-latest-offers__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Containers for images/videos/buttons */
  .page-promotions-latest-offers__section,
  .page-promotions-latest-offers__card,
  .page-promotions-latest-offers__container,
  .page-promotions-latest-offers__hero-image-wrapper,
  .page-promotions-latest-offers__video-section,
  .page-promotions-latest-offers__video-container,
  .page-promotions-latest-offers__video-wrapper,
  .page-promotions-latest-offers__cta-buttons,
  .page-promotions-latest-offers__button-group,
  .page-promotions-latest-offers__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-promotions-latest-offers__hero-section {
    padding-top: 10px !important;
  }
}

/* Color Contrast Fixes (if needed, but primary scheme is already high contrast) */
.page-promotions-latest-offers__dark-bg {
  color: #F2FFF6; /* Deep background with light text */
  background-color: #08160F;
}

.page-promotions-latest-offers__light-bg {
  color: #333333;
  background-color: #ffffff;
}

/* Ensure all images and their containers adhere to the minimum size and no filter rule */
.page-promotions-latest-offers img:not(.page-promotions-latest-offers__hero-image) {
  min-width: 200px;
  min-height: 200px;
  filter: none; /* Explicitly disallow filter */
}

.page-promotions-latest-offers__card-image {
  min-width: 200px;
  min-height: 200px;
  filter: none;
}