.page-index-exclusive-offers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-index-exclusive-offers__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

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

.page-index-exclusive-offers__hero-image {
  position: absolute;
  bottom: 0;
  right: -5%;
  opacity: 0.2;
  max-width: 400px;
  height: auto;
  transform: rotate(15deg);
  z-index: 0;
  display: none; /* Hide on smaller screens */
}

@media (min-width: 768px) {
  .page-index-exclusive-offers__hero-image {
    display: block;
  }
}

.page-index-exclusive-offers__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-index-exclusive-offers__section:nth-of-type(even) {
  background-color: #f2f7fc; /* Lighter blue-grey for alternating sections */
}

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

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

.page-index-exclusive-offers__text-content {
  font-size: 1.1em;
  color: #555;
  text-align: justify;
  margin-bottom: 30px;
}

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

.page-index-exclusive-offers__feature-item {
  background-color: #fcfcfc;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-offers__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.page-index-exclusive-offers__feature-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-exclusive-offers__feature-item p {
  color: #666;
  font-size: 0.95em;
}

.page-index-exclusive-offers__offer-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.page-index-exclusive-offers__offer-card:hover {
  transform: translateY(-5px);
}

.page-index-exclusive-offers__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-index-exclusive-offers__offer-content {
  padding: 30px;
}

.page-index-exclusive-offers__offer-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index-exclusive-offers__offer-description {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
}

.page-index-exclusive-offers__offer-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 25px;
  color: #666;
}

.page-index-exclusive-offers__offer-content ul li {
  margin-bottom: 8px;
}

.page-index-exclusive-offers__offer-card--reverse {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .page-index-exclusive-offers__offer-card {
    flex-direction: row;
  }
  .page-index-exclusive-offers__offer-card--reverse {
    flex-direction: row-reverse;
  }
  .page-index-exclusive-offers__offer-image {
    width: 40%;
    height: auto;
  }
  .page-index-exclusive-offers__offer-content {
    width: 60%;
  }
}

.page-index-exclusive-offers__step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-index-exclusive-offers__step-list li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-index-exclusive-offers__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.page-index-exclusive-offers__step-list p {
  color: #555;
}

.page-index-exclusive-offers__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-exclusive-offers__list li {
  background-color: #f0f5fa;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #444;
}

.page-index-exclusive-offers__list-title {
  display: inline;
  font-weight: bold;
  color: #003366;
  font-size: 1em; /* Keep it consistent with surrounding text */
}

.page-index-exclusive-offers__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-index-exclusive-offers__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-exclusive-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
}

.page-index-exclusive-offers__faq-answer {
  font-size: 1.05em;
  color: #666;
  display: none; /* Hidden by default, JS will toggle */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

/* Active FAQ item */
.page-index-exclusive-offers__faq-item.active .page-index-exclusive-offers__faq-question::after {
  content: '-';
}

.page-index-exclusive-offers__cta-banner {
  background: linear-gradient(45deg, #003366, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.page-index-exclusive-offers__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-index-exclusive-offers__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-exclusive-offers__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-index-exclusive-offers__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-exclusive-offers__btn--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-exclusive-offers__btn--secondary:hover {
  background-color: #002244;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.page-index-exclusive-offers__btn--ghost {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-index-exclusive-offers__btn--ghost:hover {
  background-color: #fff;
  color: #003366;
  border-color: #fff;
  transform: translateY(-2px);
}

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

.page-index-exclusive-offers__btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-index-exclusive-offers__hero-title {
    font-size: 2.8em;
  }
  .page-index-exclusive-offers__hero-description {
    font-size: 1.1em;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 2em;
  }
  .page-index-exclusive-offers__cta-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-offers__cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 767px) {
  .page-index-exclusive-offers__hero-section {
    padding: 80px 0 50px;
  }
  .page-index-exclusive-offers__hero-title {
    font-size: 2.2em;
  }
  .page-index-exclusive-offers__hero-description {
    font-size: 1em;
  }
  .page-index-exclusive-offers__section {
    padding: 40px 0;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-exclusive-offers__offer-content {
    padding: 20px;
  }
  .page-index-exclusive-offers__offer-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-offers__offer-description {
    font-size: 0.95em;
  }
  .page-index-exclusive-offers__step-list li {
    padding-left: 60px;
  }
  .page-index-exclusive-offers__step-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-index-exclusive-offers__step-title {
    font-size: 1.3em;
  }
  .page-index-exclusive-offers__cta-banner {
    padding: 60px 0;
  }
  .page-index-exclusive-offers__cta-title {
    font-size: 2em;
  }
  .page-index-exclusive-offers__cta-description {
    font-size: 1em;
  }
  .page-index-exclusive-offers__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-index-exclusive-offers__btn {
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-offers__hero-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 1.6em;
  }
  .page-index-exclusive-offers__offer-title {
    font-size: 1.3em;
  }
  .page-index-exclusive-offers__cta-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-offers__btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-index-exclusive-offers__btn--center {
    width: 100%;
  }
}