.page-promotions-latest-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff;
}

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

/* Hero Section */
.page-promotions-latest-offers__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #f0f0f0;
  overflow: hidden;
}

.page-promotions-latest-offers__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions-latest-offers__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-promotions-latest-offers__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-latest-offers__hero-title {
  font-size: 48px;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions-latest-offers__hero-description {
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-latest-offers__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #C30808; /* Use Login/Register color for CTA */
  color: #FFFF00; /* Use Login/Register font color */
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
}

.page-promotions-latest-offers__cta-button:hover {
  background: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions-latest-offers__section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-promotions-latest-offers__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-promotions-latest-offers__section-title {
  font-size: 38px;
  color: #017439;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-latest-offers__text-block {
  font-size: 18px;
  color: #333333;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-latest-offers__link {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-latest-offers__link:hover {
  text-decoration: underline;
}

/* Grid for promotion types */
.page-promotions-latest-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-latest-offers__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions-latest-offers__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-latest-offers__card-content {
  padding: 30px;
}

.page-promotions-latest-offers__card-title {
  font-size: 24px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-latest-offers__card-content p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.page-promotions-latest-offers__btn-primary {
  background: #017439;
  color: #ffffff;
}

.page-promotions-latest-offers__btn-primary:hover {
  background: #005a2e;
  transform: translateY(-2px);
}

.page-promotions-latest-offers__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-promotions-latest-offers__btn-secondary:hover {
  background: #e0f2e7;
  transform: translateY(-2px);
}

/* How-to-claim steps */
.page-promotions-latest-offers__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: left;
}

.page-promotions-latest-offers__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  position: relative;
  z-index: 1;
}

.page-promotions-latest-offers__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -20px;
  left: 20px;
  background: #017439;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-latest-offers__step-title {
  font-size: 22px;
  color: #017439;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-latest-offers__step-item p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Terms and Conditions */
.page-promotions-latest-offers__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-latest-offers__list li {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #017439;
}

.page-promotions-latest-offers__list-title {
  font-size: 20px;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-latest-offers__list li p {
  font-size: 16px;
  color: #555555;
  margin: 0;
}

/* Benefits Section */
.page-promotions-latest-offers__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promotions-latest-offers__benefit-list li {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.page-promotions-latest-offers__benefit-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-latest-offers__benefit-list li p {
  font-size: 16px;
  color: #555555;
  margin: 0;
}

/* FAQ Section */
.page-promotions-latest-offers__faq-section {
  background-color: #f0f5f0; /* Light green tint for FAQ section */
  padding: 80px 0;
}

.page-promotions-latest-offers__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-latest-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #f9f9f9;
  color: #555555;
}

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.page-promotions-latest-offers__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-promotions-latest-offers__faq-question:active {
  background: #eeeeee;
}

.page-promotions-latest-offers__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #017439;
  pointer-events: none;
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-toggle {
  color: #C30808;
  transform: rotate(180deg);
}

/* Final CTA */
.page-promotions-latest-offers__cta-final {
  background-color: #017439;
  padding: 100px 0;
}

.page-promotions-latest-offers__cta-final .page-promotions-latest-offers__section-title,
.page-promotions-latest-offers__cta-final .page-promotions-latest-offers__text-block {
  color: #ffffff;
}

.page-promotions-latest-offers__cta-final .page-promotions-latest-offers__link {
  color: #FFFF00;
}

.page-promotions-latest-offers__cta-final .page-promotions-latest-offers__cta-button {
  background: #C30808;
  color: #FFFF00;
}

.page-promotions-latest-offers__cta-final .page-promotions-latest-offers__cta-button:hover {
  background: #a30606;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-latest-offers__hero-title {
    font-size: 40px;
  }
  .page-promotions-latest-offers__hero-description {
    font-size: 18px;
  }
  .page-promotions-latest-offers__section-title {
    font-size: 32px;
  }
  .page-promotions-latest-offers__text-block {
    font-size: 17px;
  }
  .page-promotions-latest-offers__card-title {
    font-size: 22px;
  }
  .page-promotions-latest-offers__step-title {
    font-size: 20px;
  }
  .page-promotions-latest-offers__benefit-title {
    font-size: 20px;
  }
  .page-promotions-latest-offers__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions-latest-offers {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-latest-offers__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-latest-offers__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-promotions-latest-offers__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-promotions-latest-offers__cta-button {
    padding: 15px 35px;
    font-size: 18px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-latest-offers__section {
    padding: 60px 0;
  }
  .page-promotions-latest-offers__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions-latest-offers__text-block {
    font-size: 16px;
  }
  .page-promotions-latest-offers__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions-latest-offers__card {
    margin: 0 15px;
  }
  .page-promotions-latest-offers__card-content {
    padding: 25px;
  }
  .page-promotions-latest-offers__card-title {
    font-size: 20px;
  }
  .page-promotions-latest-offers__card-content p {
    font-size: 15px;
  }
  .page-promotions-latest-offers__btn-primary,
  .page-promotions-latest-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 15px;
    margin-top: 10px;
  }
  .page-promotions-latest-offers__steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-promotions-latest-offers__step-item {
    padding: 25px;
  }
  .page-promotions-latest-offers__step-title {
    font-size: 18px;
  }
  .page-promotions-latest-offers__image-full-width {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
  .page-promotions-latest-offers__list {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-promotions-latest-offers__list li {
    padding: 20px;
  }
  .page-promotions-latest-offers__list-title {
    font-size: 18px;
  }
  .page-promotions-latest-offers__benefit-list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-promotions-latest-offers__benefit-list li {
    padding: 25px;
  }
  .page-promotions-latest-offers__benefit-title {
    font-size: 18px;
  }
  .page-promotions-latest-offers__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-promotions-latest-offers__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-promotions-latest-offers__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-promotions-latest-offers__faq-answer {
    padding: 0 15px;
  }
  .page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-answer {
    padding: 15px !important;
  }
  .page-promotions-latest-offers__cta-final {
    padding: 60px 15px;
  }

  /* Image responsiveness for all img tags */
  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-latest-offers__section,
  .page-promotions-latest-offers__card,
  .page-promotions-latest-offers__container,
  .page-promotions-latest-offers__hero-section,
  .page-promotions-latest-offers__steps,
  .page-promotions-latest-offers__list,
  .page-promotions-latest-offers__benefit-list,
  .page-promotions-latest-offers__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-latest-offers__btn-container,
  .page-promotions-latest-offers__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions-latest-offers__cta-final .page-promotions-latest-offers__cta-button {
    margin-left: auto;
    margin-right: auto;
  }
}