.page-promotions-latest-offers {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;

  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--background-dark); /* Ensure background is dark for light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-latest-offers__hero-section {
  position: relative;
  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 */
  padding-bottom: 60px;
}

.page-promotions-latest-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-promotions-latest-offers__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-promotions-latest-offers__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px var(--glow-color);
}

.page-promotions-latest-offers__intro-text {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 30px;
}

.page-promotions-latest-offers__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offers__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-color);
}

/* Section Titles & Descriptions */
.page-promotions-latest-offers__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-promotions-latest-offers__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Promotions Overview */
.page-promotions-latest-offers__promotions-overview {
  padding: 60px 0;
  background-color: var(--background-dark);
}

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

.page-promotions-latest-offers__feature-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions-latest-offers__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--primary-color);
}

.page-promotions-latest-offers__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--deep-green);
}

.page-promotions-latest-offers__feature-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-promotions-latest-offers__feature-text {
  color: var(--text-secondary);
  font-size: 1em;
}

/* Promotion Categories */
.page-promotions-latest-offers__promotion-categories {
  padding: 60px 0;
  background-color: var(--deep-green);
}

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

.page-promotions-latest-offers__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions-latest-offers__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--secondary-color);
}

.page-promotions-latest-offers__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

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

.page-promotions-latest-offers__card-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions-latest-offers__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__card-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  border: none;
}

.page-promotions-latest-offers__card-button:hover {
  background-color: var(--secondary-color);
}

/* How to Claim Section */
.page-promotions-latest-offers__how-to-claim {
  padding: 60px 0;
  background-color: var(--background-dark);
}

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

.page-promotions-latest-offers__step-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-promotions-latest-offers__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gold-color);
  color: var(--background-dark);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px var(--gold-color);
}

.page-promotions-latest-offers__step-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions-latest-offers__step-text {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-promotions-latest-offers__step-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions-latest-offers__step-text a:hover {
  color: var(--glow-color);
}

.page-promotions-latest-offers__cta-button--bottom {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 350px;
}

/* Terms & Conditions */
.page-promotions-latest-offers__terms-conditions {
  padding: 60px 0;
  background-color: var(--deep-green);
}

.page-promotions-latest-offers__terms-list {
  list-style: disc;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 40px auto;
  padding-left: 25px;
}

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

.page-promotions-latest-offers__terms-list li a {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-promotions-latest-offers__terms-list li a:hover {
  color: var(--glow-color);
}

.page-promotions-latest-offers__cta-button--small {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 250px;
  padding: 12px 25px;
  font-size: 1em;
}

/* FAQ Section */
.page-promotions-latest-offers__faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
}

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

.page-promotions-latest-offers__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions-latest-offers__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-promotions-latest-offers__faq-question:hover {
  background-color: var(--primary-color);
}

.page-promotions-latest-offers__faq-item[open] .page-promotions-latest-offers__faq-question {
  background-color: var(--primary-color);
}

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

.page-promotions-latest-offers__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  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: var(--text-secondary);
  background-color: var(--card-bg);
  border-top: none;
}

.page-promotions-latest-offers__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions-latest-offers__faq-contact-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--background-dark);
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-promotions-latest-offers__faq-contact-button:hover {
  background-color: var(--glow-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions-latest-offers {
    font-size: 15px;
  }

  .page-promotions-latest-offers__container {
    padding: 0 15px !important;
  }

  .page-promotions-latest-offers__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-latest-offers__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

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

  .page-promotions-latest-offers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-latest-offers__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .page-promotions-latest-offers__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

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

  .page-promotions-latest-offers__feature-title,
  .page-promotions-latest-offers__card-title,
  .page-promotions-latest-offers__step-title {
    font-size: 1.3em;
  }

  .page-promotions-latest-offers__card-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .page-promotions-latest-offers__terms-list {
    padding-left: 20px;
  }

  .page-promotions-latest-offers__terms-list li {
    font-size: 0.95em;
  }

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

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

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

  /* All containers holding images or buttons */
  .page-promotions-latest-offers__hero-section,
  .page-promotions-latest-offers__promotions-overview,
  .page-promotions-latest-offers__promotion-categories,
  .page-promotions-latest-offers__how-to-claim,
  .page-promotions-latest-offers__terms-conditions,
  .page-promotions-latest-offers__faq-section,
  .page-promotions-latest-offers__container,
  .page-promotions-latest-offers__feature-item,
  .page-promotions-latest-offers__card,
  .page-promotions-latest-offers__step-item,
  .page-promotions-latest-offers__faq-item,
  .page-promotions-latest-offers__cta-button--bottom,
  .page-promotions-latest-offers__cta-button--small,
  .page-promotions-latest-offers__card-button,
  .page-promotions-latest-offers__faq-contact-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden; /* Prevent horizontal scroll for overflow content */
  }

  .page-promotions-latest-offers__cta-button:not(.page-promotions-latest-offers__cta-button--bottom):not(.page-promotions-latest-offers__cta-button--small),
  .page-promotions-latest-offers__card-button,
  .page-promotions-latest-offers__faq-contact-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-latest-offers__cta-button--bottom,
  .page-promotions-latest-offers__cta-button--small {
    max-width: calc(100% - 30px) !important; /* Account for container padding */
  }

  .page-promotions-latest-offers__hero-content {
    padding: 15px;
  }
}