/* style/index-ok-365-exclusive-promotions.css */
.page-index-ok-365-exclusive-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-index-ok-365-exclusive-promotions__hero {
  background: linear-gradient(135deg, #002060 0%, #003366 50%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-index-ok-365-exclusive-promotions__hero-content {
  z-index: 1;
  max-width: 800px;
}

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

.page-index-ok-365-exclusive-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-ok-365-exclusive-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-ok-365-exclusive-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.2;
}

.page-index-ok-365-exclusive-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken for text contrast, but not changing colors */
}

.page-index-ok-365-exclusive-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-index-ok-365-exclusive-promotions__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #002060; /* Midnight Blue */
}

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

.page-index-ok-365-exclusive-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-index-ok-365-exclusive-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #002060;
  transform: translateY(-2px);
}

.page-index-ok-365-exclusive-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-index-ok-365-exclusive-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-ok-365-exclusive-promotions__btn--extra-large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-index-ok-365-exclusive-promotions__section-title {
  font-size: 2.5em;
  color: #002060; /* Midnight Blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-ok-365-exclusive-promotions__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-index-ok-365-exclusive-promotions__promotions-grid {
  padding: 60px 0;
  background-color: #fff;
}

.page-index-ok-365-exclusive-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-ok-365-exclusive-promotions__promo-card {
  background-color: #f0f2f5;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-ok-365-exclusive-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-ok-365-exclusive-promotions__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-ok-365-exclusive-promotions__promo-title {
  font-size: 1.5em;
  color: #002060;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-ok-365-exclusive-promotions__promo-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-ok-365-exclusive-promotions__how-to-claim {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-index-ok-365-exclusive-promotions__steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.page-index-ok-365-exclusive-promotions__step {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.page-index-ok-365-exclusive-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #002060;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-index-ok-365-exclusive-promotions__step-title {
  font-size: 1.4em;
  color: #002060;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-ok-365-exclusive-promotions__step-description {
  color: #666;
  font-size: 0.95em;
}

.page-index-ok-365-exclusive-promotions__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-index-ok-365-exclusive-promotions__why-choose {
  padding: 60px 0;
  background-color: #002060;
  color: #fff;
}

.page-index-ok-365-exclusive-promotions__why-choose .page-index-ok-365-exclusive-promotions__section-title,
.page-index-ok-365-exclusive-promotions__why-choose .page-index-ok-365-exclusive-promotions__section-description {
  color: #fff;
}

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

.page-index-ok-365-exclusive-promotions__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index-ok-365-exclusive-promotions__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-index-ok-365-exclusive-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: invert(1) hue-rotate(200deg) saturate(2); /* This is a placeholder, as filters are forbidden for color change. This would be removed. */
}

/* Corrected .page-index-ok-365-exclusive-promotions__feature-icon to remove color-changing filter */
.page-index-ok-365-exclusive-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
  /* Removed filter for color change. Image should be intrinsically gold/white. */
}


.page-index-ok-365-exclusive-promotions__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-ok-365-exclusive-promotions__feature-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-index-ok-365-exclusive-promotions__faq {
  padding: 60px 0;
  background-color: #fff;
}

.page-index-ok-365-exclusive-promotions__faq-item {
  background-color: #f0f2f5;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-index-ok-365-exclusive-promotions__faq-question {
  font-size: 1.2em;
  color: #002060;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-index-ok-365-exclusive-promotions__faq-answer {
  color: #555;
  font-size: 1em;
}

.page-index-ok-365-exclusive-promotions__cta-bottom {
  background: linear-gradient(90deg, #FFD700, #e6c200);
  padding: 80px 0;
  text-align: center;
  color: #002060;
}

.page-index-ok-365-exclusive-promotions__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #002060;
  font-weight: bold;
}

.page-index-ok-365-exclusive-promotions__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-ok-365-exclusive-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-index-ok-365-exclusive-promotions__hero-subtitle {
    font-size: 1.1em;
  }

  .page-index-ok-365-exclusive-promotions__section-title {
    font-size: 2em;
  }

  .page-index-ok-365-exclusive-promotions__grid,
  .page-index-ok-365-exclusive-promotions__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-index-ok-365-exclusive-promotions__steps {
    flex-direction: column;
    align-items: center;
  }

  .page-index-ok-365-exclusive-promotions__step {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-index-ok-365-exclusive-promotions__hero {
    padding: 60px 0;
  }

  .page-index-ok-365-exclusive-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-index-ok-365-exclusive-promotions__hero-subtitle {
    font-size: 1em;
  }

  .page-index-ok-365-exclusive-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-ok-365-exclusive-promotions__btn--large,
  .page-index-ok-365-exclusive-promotions__btn--extra-large {
    width: 80%;
    margin: 0 auto;
  }

  .page-index-ok-365-exclusive-promotions__section-title {
    font-size: 1.8em;
  }

  .page-index-ok-365-exclusive-promotions__cta-title {
    font-size: 2.2em;
  }

  .page-index-ok-365-exclusive-promotions__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-index-ok-365-exclusive-promotions__hero-title {
    font-size: 1.8em;
  }

  .page-index-ok-365-exclusive-promotions__hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-ok-365-exclusive-promotions__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-index-ok-365-exclusive-promotions__btn--large,
  .page-index-ok-365-exclusive-promotions__btn--extra-large {
    width: 90%;
  }

  .page-index-ok-365-exclusive-promotions__section-title {
    font-size: 1.5em;
  }

  .page-index-ok-365-exclusive-promotions__promo-card {
    padding: 20px;
  }

  .page-index-ok-365-exclusive-promotions__cta-title {
    font-size: 1.8em;
  }
}