.page-index-full88-exclusive-offers__hero-section {
  background: linear-gradient(135deg, #003366, #FFD700);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-full88-exclusive-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-full88-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-full88-exclusive-offers__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-index-full88-exclusive-offers__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-index-full88-exclusive-offers__btn--primary {
  background-color: #DC143C; /* Accent Red */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.page-index-full88-exclusive-offers__btn--primary:hover {
  background-color: #c01030;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.page-index-full88-exclusive-offers__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-full88-exclusive-offers__content-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-index-full88-exclusive-offers__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-index-full88-exclusive-offers__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-full88-exclusive-offers__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-full88-exclusive-offers__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-index-full88-exclusive-offers__offer-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-full88-exclusive-offers__offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-index-full88-exclusive-offers__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
}

.page-index-full88-exclusive-offers__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-full88-exclusive-offers__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-full88-exclusive-offers__btn--secondary {
  background-color: #FFD700;
  color: #003366;
  padding: 12px 25px;
  font-size: 1em;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
  margin-top: auto; /* Push button to bottom */
}

.page-index-full88-exclusive-offers__btn--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-index-full88-exclusive-offers__ordered-list,
.page-index-full88-exclusive-offers__unordered-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-full88-exclusive-offers__ordered-list li,
.page-index-full88-exclusive-offers__unordered-list li {
  background-color: #ffffff;
  border-left: 5px solid #003366;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.page-index-full88-exclusive-offers__ordered-list li:hover,
.page-index-full88-exclusive-offers__unordered-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-full88-exclusive-offers__list-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index-full88-exclusive-offers__ordered-list p,
.page-index-full88-exclusive-offers__unordered-list p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 15px;
}

.page-index-full88-exclusive-offers__ordered-list a,
.page-index-full88-exclusive-offers__unordered-list a,
.page-index-full88-exclusive-offers__paragraph a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-index-full88-exclusive-offers__ordered-list a:hover,
.page-index-full88-exclusive-offers__unordered-list a:hover,
.page-index-full88-exclusive-offers__paragraph a:hover {
  color: #FFD700;
}

.page-index-full88-exclusive-offers__image--full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-full88-exclusive-offers__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-index-full88-exclusive-offers__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  transition: box-shadow 0.3s ease;
}

.page-index-full88-exclusive-offers__faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-index-full88-exclusive-offers__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index-full88-exclusive-offers__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-index-full88-exclusive-offers__section-title--cta {
  color: #DC143C;
  font-size: 2.8em;
  margin-top: 60px;
  margin-bottom: 20px;
}

.page-index-full88-exclusive-offers__section-title--cta::after {
  background-color: #DC143C;
}

.page-index-full88-exclusive-offers__paragraph--cta {
  text-align: center;
  font-size: 1.2em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-index-full88-exclusive-offers__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-full88-exclusive-offers__sticky-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #003366;
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.page-index-full88-exclusive-offers__sticky-promo:hover {
  transform: translateY(-5px);
}

.page-index-full88-exclusive-offers__sticky-promo-content p {
  margin: 0;
  font-size: 1.1em;
  font-weight: bold;
}

.page-index-full88-exclusive-offers__btn--accent {
  background-color: #FFD700;
  color: #003366;
  padding: 10px 20px;
  font-size: 1em;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-index-full88-exclusive-offers__btn--accent:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-full88-exclusive-offers__hero-title {
    font-size: 3em;
  }
  .page-index-full88-exclusive-offers__hero-description {
    font-size: 1.2em;
  }
  .page-index-full88-exclusive-offers__section-title {
    font-size: 2.2em;
  }
  .page-index-full88-exclusive-offers__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-full88-exclusive-offers__hero-section {
    padding: 60px 0;
  }
  .page-index-full88-exclusive-offers__hero-title {
    font-size: 2.5em;
  }
  .page-index-full88-exclusive-offers__hero-description {
    font-size: 1em;
  }
  .page-index-full88-exclusive-offers__btn--primary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-full88-exclusive-offers__section-title {
    font-size: 2em;
  }
  .page-index-full88-exclusive-offers__offer-card {
    padding: 25px;
  }
  .page-index-full88-exclusive-offers__card-title {
    font-size: 1.4em;
  }
  .page-index-full88-exclusive-offers__list-title {
    font-size: 1.3em;
  }
  .page-index-full88-exclusive-offers__faq-question {
    font-size: 1.2em;
  }
  .page-index-full88-exclusive-offers__section-title--cta {
    font-size: 2.2em;
  }
  .page-index-full88-exclusive-offers__paragraph--cta {
    font-size: 1.1em;
  }
  .page-index-full88-exclusive-offers__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-full88-exclusive-offers__sticky-promo {
    flex-direction: column;
    align-items: flex-end;
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
  }
  .page-index-full88-exclusive-offers__sticky-promo-content p {
    font-size: 0.9em;
    text-align: right;
  }
  .page-index-full88-exclusive-offers__btn--accent {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-index-full88-exclusive-offers__hero-section {
    padding: 40px 0;
  }
  .page-index-full88-exclusive-offers__hero-title {
    font-size: 2em;
  }
  .page-index-full88-exclusive-offers__hero-description {
    font-size: 0.9em;
  }
  .page-index-full88-exclusive-offers__btn--primary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-full88-exclusive-offers__section-title {
    font-size: 1.8em;
  }
  .page-index-full88-exclusive-offers__offer-grid {
    grid-template-columns: 1fr;
  }
  .page-index-full88-exclusive-offers__offer-card {
    padding: 20px;
  }
  .page-index-full88-exclusive-offers__card-title {
    font-size: 1.3em;
  }
  .page-index-full88-exclusive-offers__list-title {
    font-size: 1.2em;
  }
  .page-index-full88-exclusive-offers__faq-question {
    font-size: 1.1em;
  }
  .page-index-full88-exclusive-offers__section-title--cta {
    font-size: 1.8em;
  }
  .page-index-full88-exclusive-offers__paragraph--cta {
    font-size: 1em;
  }
  .page-index-full88-exclusive-offers__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-full88-exclusive-offers__sticky-promo {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }
  .page-index-full88-exclusive-offers__sticky-promo-content p {
    font-size: 0.8em;
  }
  .page-index-full88-exclusive-offers__btn--accent {
    padding: 6px 12px;
    font-size: 0.8em;
  }
}