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

.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 {
  padding-top: 10px; /* Small top padding, assuming body has padding-top from shared.css */
  padding-bottom: 40px;
  text-align: center;
  background-color: #f0f8ff; /* Light background for hero */
  position: relative;
  overflow: hidden;
}

.page-promotions-latest-offers__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

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

.page-promotions-latest-offers__hero-content {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-latest-offers__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-latest-offers__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

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

/* General Section Styling */
.page-promotions-latest-offers__intro-section,
.page-promotions-latest-offers__offers-details,
.page-promotions-latest-offers__how-to-join-section,
.page-promotions-latest-offers__terms-section,
.page-promotions-latest-offers__faq-section,
.page-promotions-latest-offers__cta-bottom-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-promotions-latest-offers__intro-section {
  background-color: #f9f9f9;
}

.page-promotions-latest-offers__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-latest-offers__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Offer Grid */
.page-promotions-latest-offers__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-latest-offers__offer-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-latest-offers__offer-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-promotions-latest-offers__offer-card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-promotions-latest-offers__offer-card-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Join Steps */
.page-promotions-latest-offers__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-latest-offers__step-item {
  background-color: #f0f8ff;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-latest-offers__step-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions-latest-offers__step-description {
  font-size: 1em;
  color: #555555;
}

.page-promotions-latest-offers__important-note {
  background-color: #fff3cd;
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  color: #856404;
}

/* Buttons */
.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-latest-offers__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-latest-offers__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-promotions-latest-offers__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-latest-offers__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* FAQ Section */
.page-promotions-latest-offers__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-latest-offers__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-latest-offers__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  color: #26A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff;
}

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

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

.page-promotions-latest-offers__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  line-height: 1;
}

.page-promotions-latest-offers__faq-item[open] .page-promotions-latest-offers__faq-toggle {
  content: '−';
}

.page-promotions-latest-offers__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95em;
  color: #555555;
  border-top: 1px solid #e0e0e0;
  margin-top: -1px; /* Overlap border for cleaner look */
}

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

.page-promotions-latest-offers__faq-answer .page-promotions-latest-offers__btn-secondary {
  margin-top: 15px;
}

/* Copyright */
.page-promotions-latest-offers__footer-copyright {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #777777;
  background-color: #f9f9f9;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-latest-offers__main-title {
    font-size: clamp(2em, 4vw, 2.5em);
  }

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

  .page-promotions-latest-offers__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-promotions-latest-offers__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-promotions-latest-offers__main-title {
    font-size: 2.2em !important;
    line-height: 1.3;
  }

  .page-promotions-latest-offers__description {
    font-size: 1em;
    padding: 0 10px;
  }

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

  .page-promotions-latest-offers__btn-primary,
  .page-promotions-latest-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* General content sections */
  .page-promotions-latest-offers__intro-section,
  .page-promotions-latest-offers__offers-details,
  .page-promotions-latest-offers__how-to-join-section,
  .page-promotions-latest-offers__terms-section,
  .page-promotions-latest-offers__faq-section,
  .page-promotions-latest-offers__cta-bottom-section {
    padding: 40px 0;
  }

  .page-promotions-latest-offers__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-promotions-latest-offers__text-block {
    font-size: 0.95em;
  }

  /* Offer Grid (Product Display Area) */
  .page-promotions-latest-offers__offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-latest-offers__offer-card-image {
    height: 180px; /* Adjust height for mobile */
  }

  .page-promotions-latest-offers__offer-card-title {
    font-size: 1.3em;
  }

  /* How to Join Steps */
  .page-promotions-latest-offers__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FAQ */
  .page-promotions-latest-offers__faq-item summary {
    padding: 15px;
    font-size: 0.95em;
  }

  .page-promotions-latest-offers__faq-toggle {
    font-size: 1.3em;
  }

  .page-promotions-latest-offers__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.9em;
  }

  /* All Images */
  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}