.page-blog-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Explicitly set for contrast checks */
}

.page-blog-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.page-blog-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for image wrapper */
  margin-bottom: 20px;
}

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

.page-blog-latest-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-latest-promotions__main-title {
  color: #26A9E0; /* Brand color for main title */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-blog-latest-promotions__subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-latest-promotions__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions__btn-primary:hover {
  background-color: #1e87c2;
}

.page-blog-latest-promotions__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #26A9E0;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-latest-promotions__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
  border-radius: 10px;
}

.page-blog-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-latest-promotions__section-padding {
  padding: 40px 20px;
}

.page-blog-latest-promotions__section-title {
  color: #26A9E0;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-latest-promotions__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-blog-latest-promotions__promo-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-blog-latest-promotions__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency, will be responsive */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-blog-latest-promotions__promo-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-latest-promotions__promo-card-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-blog-latest-promotions__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-latest-promotions__step-title {
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-latest-promotions__step-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #333333;
}

.page-blog-latest-promotions__list-item {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-blog-latest-promotions__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

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

.page-blog-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-blog-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions__faq-question:hover {
  background-color: #f0f0f0;
}

.page-blog-latest-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-latest-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-latest-promotions__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-latest-promotions__hero-content {
    padding: 0 15px;
  }

  .page-blog-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: 10px;
  }

  .page-blog-latest-promotions__subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions__btn-primary,
  .page-blog-latest-promotions__btn-secondary,
  .page-blog-latest-promotions a[class*="button"],
  .page-blog-latest-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions__btn-large {
    padding: 15px 25px !important;
    font-size: 1.1rem !important;
  }

  .page-blog-latest-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions__paragraph,
  .page-blog-latest-promotions__list-item,
  .page-blog-latest-promotions__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-latest-promotions__promo-grid,
  .page-blog-latest-promotions__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-promotions__promo-card-image {
    height: 180px;
  }

  .page-blog-latest-promotions__promo-card-title {
    font-size: 1.2rem;
  }

  .page-blog-latest-promotions__promo-card-description {
    font-size: 0.9rem;
  }

  .page-blog-latest-promotions__step-title {
    font-size: 1.1rem;
  }

  .page-blog-latest-promotions__step-description {
    font-size: 0.9rem;
  }

  .page-blog-latest-promotions__content-area,
  .page-blog-latest-promotions__section-padding {
    padding: 20px 15px;
  }

  /* Ensure all images are responsive and don't overflow */
  .page-blog-latest-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions__section,
  .page-blog-latest-promotions__card,
  .page-blog-latest-promotions__container,
  .page-blog-latest-promotions__hero-section,
  .page-blog-latest-promotions__promo-card,
  .page-blog-latest-promotions__step-item,
  .page-blog-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-promotions__hero-section {
    padding-left: 0 !important; /* Hero section itself doesn't need side padding, content inside does */
    padding-right: 0 !important;
  }

  .page-blog-latest-promotions__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-latest-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-latest-promotions__faq-answer {
    padding: 15px 20px;
  }

  /* Buttons flex wrap for multiple buttons */
  .page-blog-latest-promotions__cta-buttons,
  .page-blog-latest-promotions__button-group,
  .page-blog-latest-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}