.page-promotions-limited-time-offers {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-promotions-limited-time-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-limited-time-offers__hero {
  background: linear-gradient(135deg, #0D47A1 0%, #306DCF 100%); /* Deeper blue to lighter blue for a premium feel */
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promotions-limited-time-offers__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern,subtle]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-limited-time-offers__hero-content {
  flex: 1;
  z-index: 1;
  text-align: left;
}

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

.page-promotions-limited-time-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  color: #E0E0E0;
}

.page-promotions-limited-time-offers__hero-cta {
  background-color: #FFD700; /* Gold button */
  color: #0D47A1; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-promotions-limited-time-offers__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-limited-time-offers__hero-image-wrapper {
  flex: 0 0 450px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-limited-time-offers__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__why-join,
.page-promotions-limited-time-offers__current-promos,
.page-promotions-limited-time-offers__how-to-claim,
.page-promotions-limited-time-offers__faq,
.page-promotions-limited-time-offers__cta-bottom {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promotions-limited-time-offers__why-join {
  background-color: #fff;
}

.page-promotions-limited-time-offers__current-promos {
  background-color: #eef2f6;
}

.page-promotions-limited-time-offers__section-title {
  font-size: 2.5em;
  color: #0D47A1;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-limited-time-offers__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-limited-time-offers__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-limited-time-offers__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-limited-time-offers__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-limited-time-offers__feature-item h3 {
  font-size: 1.4em;
  color: #0D47A1;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__feature-item p {
  color: #666;
}

.page-promotions-limited-time-offers__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-limited-time-offers__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-limited-time-offers__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions-limited-time-offers__promo-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions-limited-time-offers__promo-title {
  font-size: 1.5em;
  color: #0D47A1;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-limited-time-offers__promo-text {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-limited-time-offers__promo-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 20px;
}

.page-promotions-limited-time-offers__promo-tag {
  background-color: #FFD700;
  color: #0D47A1;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-promotions-limited-time-offers__countdown {
  font-weight: bold;
  color: #D32F2F;
}

.page-promotions-limited-time-offers__promo-cta {
  background-color: #0D47A1;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-promotions-limited-time-offers__promo-cta:hover {
  background-color: #1a5ca7;
}

.page-promotions-limited-time-offers__how-to-claim {
  background-color: #f9f9f9;
}

.page-promotions-limited-time-offers__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-promotions-limited-time-offers__steps li {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promotions-limited-time-offers__step-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions-limited-time-offers__step-icon {
  width: 50px;
  height: 50px;
  filter: invert(10%) sepia(90%) saturate(6000%) hue-rotate(210deg) brightness(50%); /* Dark blue icon */
}

.page-promotions-limited-time-offers__steps h4 {
  font-size: 1.3em;
  color: #0D47A1;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__steps p {
  color: #666;
}

.page-promotions-limited-time-offers__steps p a {
  color: #0D47A1;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-limited-time-offers__steps p a:hover {
  text-decoration: underline;
}

.page-promotions-limited-time-offers__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

.page-promotions-limited-time-offers__faq {
  background-color: #fff;
}

.page-promotions-limited-time-offers__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-limited-time-offers__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-limited-time-offers__accordion-header {
  width: 100%;
  background-color: #0D47A1;
  color: #FFFFFF;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-limited-time-offers__accordion-header:hover {
  background-color: #1a5ca7;
}

.page-promotions-limited-time-offers__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-limited-time-offers__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions-limited-time-offers__accordion-content.show {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-promotions-limited-time-offers__accordion-content p {
  color: #444;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__accordion-content a {
  color: #0D47A1;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-limited-time-offers__accordion-content a:hover {
  text-decoration: underline;
}

.page-promotions-limited-time-offers__cta-bottom {
  background: linear-gradient(45deg, #0D47A1, #FFD700);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-promotions-limited-time-offers__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-promotions-limited-time-offers__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-promotions-limited-time-offers__cta-btn {
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__cta-btn--primary {
  background-color: #FFFFFF;
  color: #0D47A1;
}

.page-promotions-limited-time-offers__cta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__cta-btn--secondary {
  background-color: #0D47A1;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-limited-time-offers__cta-btn--secondary:hover {
  background-color: #093a8d;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-limited-time-offers__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  border: 2px solid #0D47A1;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
  transform: translateX(120%);
  animation: page-promotions-limited-time-offers__slideIn 0.8s forwards 1s;
}

.page-promotions-limited-time-offers__floating-ad a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0D47A1;
  font-weight: bold;
}

.page-promotions-limited-time-offers__floating-ad-image {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  object-fit: cover;
}

.page-promotions-limited-time-offers__floating-ad-text {
  font-size: 1.1em;
  line-height: 1.3;
}

.page-promotions-limited-time-offers__floating-ad-close {
  background: none;
  border: none;
  font-size: 1.8em;
  color: #0D47A1;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
}

@keyframes page-promotions-limited-time-offers__slideIn {
  to { transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-limited-time-offers__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-promotions-limited-time-offers__hero-content {
    order: 2;
    text-align: center;
  }

  .page-promotions-limited-time-offers__hero-image-wrapper {
    order: 1;
    margin-bottom: 30px;
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .page-promotions-limited-time-offers__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-limited-time-offers__hero-description {
    font-size: 1em;
  }

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

  .page-promotions-limited-time-offers__cta-title {
    font-size: 2.5em;
  }

  .page-promotions-limited-time-offers__cta-description {
    font-size: 1.1em;
  }

  .page-promotions-limited-time-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-limited-time-offers__cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-offers__hero {
    padding: 40px 15px;
  }

  .page-promotions-limited-time-offers__hero-title {
    font-size: 2em;
  }

  .page-promotions-limited-time-offers__hero-description {
    font-size: 0.95em;
  }

  .page-promotions-limited-time-offers__section-title {
    font-size: 1.8em;
  }

  .page-promotions-limited-time-offers__section-description {
    font-size: 1em;
  }

  .page-promotions-limited-time-offers__features,
  .page-promotions-limited-time-offers__promo-grid,
  .page-promotions-limited-time-offers__steps {
    grid-template-columns: 1fr;
  }

  .page-promotions-limited-time-offers__promo-card {
    flex-direction: column;
  }

  .page-promotions-limited-time-offers__cta-title {
    font-size: 2em;
  }

  .page-promotions-limited-time-offers__cta-description {
    font-size: 1em;
  }

  .page-promotions-limited-time-offers__floating-ad {
    bottom: 15px;
    right: 15px;
    padding: 10px;
    gap: 10px;
  }

  .page-promotions-limited-time-offers__floating-ad-image {
    width: 40px;
    height: 40px;
  }

  .page-promotions-limited-time-offers__floating-ad-text {
    font-size: 0.9em;
  }

  .page-promotions-limited-time-offers__floating-ad-close {
    font-size: 1.5em;
  }

  .page-promotions-limited-time-offers__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-limited-time-offers__accordion-content.show {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-offers__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-limited-time-offers__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-limited-time-offers__section-title {
    font-size: 1.5em;
  }

  .page-promotions-limited-time-offers__promo-title {
    font-size: 1.3em;
  }

  .page-promotions-limited-time-offers__cta-title {
    font-size: 1.8em;
  }

  .page-promotions-limited-time-offers__cta-btn {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}