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

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366 0%, #0a4f94 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-promotions__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__overview {
  padding: 60px 0;
  background-color: #f2f2f2;
}

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

.page-promotions__category-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promotions__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__category-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-promotions__category-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__category-text {
  color: #666;
  font-size: 1em;
}

.page-promotions__featured-list {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-promotions__promotion-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promotions__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promotion-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__promotion-title a:hover {
  color: #FFD700;
}

.page-promotions__promotion-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promotion-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promotions__btn--details {
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
}

.page-promotions__btn--details:hover {
  background-color: #0a4f94;
  transform: translateY(-2px);
}

.page-promotions__btn--claim {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-promotions__btn--claim:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  background-color: #FFD700;
  color: #003366;
  border: none;
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-promotions__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__why-choose {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-promotions__why-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__why-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.page-promotions__why-list li:hover {
  transform: translateY(-5px);
}

.page-promotions__list-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}

.page-promotions__why-list li strong {
  color: #003366;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-promotions__why-list li p {
  color: #555;
  font-size: 0.95em;
  margin-top: 0;
}

.page-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #eaf2f8;
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__claim-steps li {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #003366;
  transition: transform 0.3s ease;
}

.page-promotions__claim-steps li:hover {
  transform: translateY(-8px);
}

.page-promotions__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.page-promotions__claim-steps h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__claim-steps p {
  color: #666;
  font-size: 1em;
}

.page-promotions__claim-steps p a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__claim-steps p a:hover {
  color: #e6c200;
}

.page-promotions__faq {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions__faq-item {
  background-color: #f2f7fc;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  margin-top: 15px;
}

.page-promotions__faq-answer.active {
  display: block;
}

.page-promotions__floating-promo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #FFD700;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__floating-promo:hover {
  transform: translateY(-5px) scale(1.03);
  background-color: #e6c200;
}

.page-promotions__floating-promo a {
  text-decoration: none;
  color: #003366;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-promotions__floating-promo-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.page-promotions__floating-promo-text {
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }

  .page-promotions__hero-description {
    font-size: 1.1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 20px;
  }

  .page-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__hero-btn {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-promotions__categories, .page-promotions__why-list, .page-promotions__claim-steps {
    grid-template-columns: 1fr;
  }

  .page-promotions__promotion-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__btn {
    width: 100%;
  }

  .page-promotions__floating-promo {
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
    gap: 8px;
  }

  .page-promotions__floating-promo-icon {
    width: 35px;
    height: 35px;
  }

  .page-promotions__floating-promo-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }

  .page-promotions__hero-description {
    font-size: 0.9em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__promotion-title {
    font-size: 1.4em;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
  }
}