/* style/promotions-how-to-claim.css */
.page-promotions-how-to-claim {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-promotions-how-to-claim__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-how-to-claim__hero {
  background: linear-gradient(135deg, #0A246A 0%, #3a5c9d 100%); /* Adjusted gradient for better blend */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-promotions-how-to-claim__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-promotions-how-to-claim__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions-how-to-claim__section {
  padding: 60px 0;
}

.page-promotions-how-to-claim__section--bg-light {
  background-color: #f0f2f5;
}

.page-promotions-how-to-claim__section--bg-dark {
  background-color: #0A246A;
  color: #fff;
}

.page-promotions-how-to-claim__section-title {
  font-size: 2.2em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-how-to-claim__section-title--light {
  color: #FFD700;
}

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

.page-promotions-how-to-claim__section-title--light::after {
  background-color: #fff;
}

.page-promotions-how-to-claim__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-how-to-claim__text-block--light {
  color: #e0e0e0;
}

.page-promotions-how-to-claim__text-block--note {
  font-style: italic;
  color: #555;
  text-align: center;
  margin-top: 30px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-how-to-claim__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions-how-to-claim__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-how-to-claim__list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-how-to-claim__list h3 {
  color: #0A246A;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-how-to-claim__list p {
  margin-bottom: 0;
}

.page-promotions-how-to-claim__list--tips li {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-how-to-claim__list--tips li strong {
  color: #0A246A;
}

.page-promotions-how-to-claim__numbered-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 30px 0;
}

.page-promotions-how-to-claim__numbered-list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 80px;
}

.page-promotions-how-to-claim__numbered-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A246A;
  font-size: 1.8em;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-how-to-claim__numbered-list h3 {
  color: #0A246A;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-how-to-claim__sub-list {
  list-style: disc;
  margin-left: 20px;
  margin-top: 15px;
  color: #555;
}

.page-promotions-how-to-claim__sub-list li p {
  margin-bottom: 5px;
}

.page-promotions-how-to-claim__highlight {
  color: #0A246A;
  font-weight: bold;
}

.page-promotions-how-to-claim__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-how-to-claim__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
}

.page-promotions-how-to-claim__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-how-to-claim__btn--secondary {
  background-color: #0A246A;
  color: #fff;
  border: 2px solid #FFD700;
}

.page-promotions-how-to-claim__btn--secondary:hover {
  background-color: #071a4f;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-how-to-claim__btn--light {
  background-color: #fff;
  color: #0A246A;
  border: 2px solid #FFD700;
}

.page-promotions-how-to-claim__btn--light:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-promotions-how-to-claim__link {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-how-to-claim__link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-how-to-claim__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-how-to-claim__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-how-to-claim__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-promotions-how-to-claim__grid-item h3 {
  color: #0A246A;
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-promotions-how-to-claim__grid-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

.page-promotions-how-to-claim__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-how-to-claim__faq-list {
  margin-top: 40px;
}

.page-promotions-how-to-claim__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.page-promotions-how-to-claim__faq-question {
  font-size: 1.3em;
  color: #0A246A;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-promotions-how-to-claim__faq-question:hover {
  background-color: #f0f2f5;
}

.page-promotions-how-to-claim__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
}

.page-promotions-how-to-claim__faq-question.active::after {
  content: '-';
}

.page-promotions-how-to-claim__faq-answer {
  padding: 0 25px 20px 25px;
  margin: 0;
  font-size: 1.05em;
  color: #555;
  display: none;
}

.page-promotions-how-to-claim__cta-bottom {
  background-color: #0A246A;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-promotions-how-to-claim__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-how-to-claim__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-how-to-claim__hero {
    padding: 80px 0;
  }

  .page-promotions-how-to-claim__hero-title {
    font-size: 2em;
  }

  .page-promotions-how-to-claim__hero-description {
    font-size: 1em;
  }

  .page-promotions-how-to-claim__section-title {
    font-size: 1.8em;
  }

  .page-promotions-how-to-claim__numbered-list li {
    padding-left: 60px;
  }

  .page-promotions-how-to-claim__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.4em;
    left: 15px;
  }

  .page-promotions-how-to-claim__numbered-list h3 {
    font-size: 1.3em;
  }

  .page-promotions-how-to-claim__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-how-to-claim__cta-title {
    font-size: 2em;
  }

  .page-promotions-how-to-claim__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-how-to-claim__hero {
    padding: 60px 0;
  }

  .page-promotions-how-to-claim__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-how-to-claim__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-how-to-claim__section {
    padding: 40px 0;
  }

  .page-promotions-how-to-claim__section-title {
    font-size: 1.5em;
  }

  .page-promotions-how-to-claim__list li, .page-promotions-how-to-claim__numbered-list li {
    padding: 20px;
  }

  .page-promotions-how-to-claim__numbered-list li::before {
    font-size: 1.2em;
  }

  .page-promotions-how-to-claim__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-how-to-claim__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-promotions-how-to-claim__cta-title {
    font-size: 1.8em;
  }
}