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

.page-promotions-latest-offers__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-promotions-latest-offers__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over image for better flow */
  background: rgba(17, 40, 27, 0.9); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-promotions-latest-offers__intro-text {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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 {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-latest-offers__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

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

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

.page-promotions-latest-offers__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-promotions-latest-offers__section-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-latest-offers__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-latest-offers__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-promotions-latest-offers__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-latest-offers__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-latest-offers__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-promotions-latest-offers__promo-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions-latest-offers__promo-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions-latest-offers__promo-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-latest-offers__promo-date {
  font-size: 0.85em;
  color: #22C768; /* Auxiliary Color */
  margin-bottom: 20px;
  display: block;
}

.page-promotions-latest-offers__steps-list,
.page-promotions-latest-offers__conditions-list,
.page-promotions-latest-offers__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
}

.page-promotions-latest-offers__step-item,
.page-promotions-latest-offers__condition-item,
.page-promotions-latest-offers__benefit-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-latest-offers__step-title,
.page-promotions-latest-offers__benefit-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions-latest-offers__step-text,
.page-promotions-latest-offers__condition-item,
.page-promotions-latest-offers__benefit-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-latest-offers__condition-item::before {
  content: '• ';
  color: #22C768; /* Auxiliary Color */
  font-weight: bold;
  margin-right: 8px;
}

.page-promotions-latest-offers__benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.page-promotions-latest-offers__benefit-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #0A4B2C; /* Deep Green */
  padding: 10px;
}

.page-promotions-latest-offers__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-latest-offers__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-latest-offers__faq-question:hover {
  background-color: #13994A; /* Slightly darker green */
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-promotions-latest-offers__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-promotions-latest-offers__button-group {
  text-align: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-promotions-latest-offers__promo-card {
    flex-direction: row;
  }

  .page-promotions-latest-offers__promo-image {
    width: 40%;
    height: auto;
    max-height: 350px;
  }

  .page-promotions-latest-offers__promo-content {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-promotions-latest-offers__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-promotions-latest-offers__main-title {
    font-size: 2.2em;
  }

  .page-promotions-latest-offers__intro-text {
    font-size: 1em;
  }

  .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;
    padding: 12px 20px;
  }

  .page-promotions-latest-offers__section {
    padding: 40px 15px;
  }

  .page-promotions-latest-offers__section-title {
    font-size: 1.8em;
  }

  .page-promotions-latest-offers__section-description {
    font-size: 0.95em;
  }

  .page-promotions-latest-offers__promo-categories {
    grid-template-columns: 1fr;
  }

  .page-promotions-latest-offers__promo-card {
    flex-direction: column;
  }

  .page-promotions-latest-offers__promo-image {
    height: 250px;
  }

  .page-promotions-latest-offers__promo-title {
    font-size: 1.5em;
  }

  .page-promotions-latest-offers__promo-content {
    padding: 20px;
  }

  .page-promotions-latest-offers__step-item,
  .page-promotions-latest-offers__condition-item,
  .page-promotions-latest-offers__benefit-item {
    padding: 20px;
  }

  .page-promotions-latest-offers__benefit-item {
    flex-direction: column;
    text-align: center;
  }

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

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

  /* Force responsive for all images, videos, buttons */
  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-latest-offers video,
  .page-promotions-latest-offers__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-latest-offers__section,
  .page-promotions-latest-offers__card,
  .page-promotions-latest-offers__container,
  .page-promotions-latest-offers__promo-card,
  .page-promotions-latest-offers__hero-section,
  .page-promotions-latest-offers__hero-content,
  .page-promotions-latest-offers__promo-categories,
  .page-promotions-latest-offers__promo-list,
  .page-promotions-latest-offers__steps-list,
  .page-promotions-latest-offers__conditions-list,
  .page-promotions-latest-offers__benefits-list,
  .page-promotions-latest-offers__faq-list,
  .page-promotions-latest-offers__cta-buttons,
  .page-promotions-latest-offers__button-group,
  .page-promotions-latest-offers__video-section,
  .page-promotions-latest-offers__video-container,
  .page-promotions-latest-offers__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

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

/* Text color for dark background */
.page-promotions-latest-offers__dark-bg {
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
}

.page-promotions-latest-offers p,
.page-promotions-latest-offers li {
  color: #A7D9B8; /* Text Secondary */
}