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

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

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #2A3B4C;
}

.page-promotions__hero-section {
  background: linear-gradient(135deg, #1A2A3A, #3A4C5D);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A2A3A;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2A3A;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.page-promotions__btn--link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-promotions__feature-item {
  background-color: #1A2A3A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-promotions__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  color: #CCCCCC;
  font-size: 1em;
}

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

.page-promotions__promo-card {
  background-color: #1A2A3A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions__promo-text {
  color: #CCCCCC;
  font-size: 1em;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn--secondary {
  margin-top: auto;
  align-self: center;
  margin-left: 0;
}

.page-promotions__how-to-claim .page-promotions__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__steps li {
  background-color: #2A3B4C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
  color: #E0E0E0;
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-promotions__steps li::before {
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
}

.page-promotions__steps li a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__steps li a:hover {
  text-decoration: underline;
}

.page-promotions__note {
  font-style: italic;
  color: #BBBBBB;
  text-align: center;
  margin-top: 30px;
  font-size: 0.95em;
}

.page-promotions__terms-conditions .page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__terms-list li {
  background-color: #2A3B4C;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #E0E0E0;
  font-size: 1em;
}

.page-promotions__terms-list li strong {
  color: #FFD700;
}

.page-promotions__terms-list li a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__terms-list li a:hover {
  text-decoration: underline;
}

.page-promotions__note-important {
  color: #FFD700;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

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

.page-promotions__detail-item {
  background-color: #1A2A3A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-promotions__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__detail-title a:hover {
  text-decoration: underline;
}

.page-promotions__detail-description {
  color: #CCCCCC;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__faq-section {
  position: relative;
  overflow: hidden;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions__faq-item {
  background-color: #2A3B4C;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promotions__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  color: #E0E0E0;
  padding: 0 20px 20px 20px;
  font-size: 1em;
  display: none;
}

.page-promotions__faq-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.2;
  transform: rotate(15deg);
  z-index: 0;
}

.page-promotions__cta-section {
  background: linear-gradient(45deg, #FFD700, #e6c200);
  padding: 80px 0;
  text-align: center;
  color: #1A2A3A;
  position: relative;
  overflow: hidden;
}

.page-promotions__cta-title {
  font-size: 3em;
  color: #1A2A3A;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__cta-image {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: auto;
  opacity: 0.1;
  transform: rotate(-20deg);
  z-index: 0;
}

.page-promotions__cta-buttons {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.page-promotions__cta-buttons .page-promotions__btn--primary {
  background-color: #1A2A3A;
  color: #FFD700;
  border-color: #1A2A3A;
}

.page-promotions__cta-buttons .page-promotions__btn--primary:hover {
  background-color: #000000;
  color: #FFD700;
  border-color: #000000;
}

.page-promotions__cta-buttons .page-promotions__btn--secondary {
  background-color: transparent;
  color: #1A2A3A;
  border-color: #1A2A3A;
}

.page-promotions__cta-buttons .page-promotions__btn--secondary:hover {
  background-color: #1A2A3A;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__cta-title {
    font-size: 2.5em;
  }
  .page-promotions__promo-grid, .page-promotions__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__faq-image {
    width: 200px;
    bottom: -30px;
    right: -30px;
  }
  .page-promotions__cta-image {
    width: 180px;
    top: -30px;
    left: -30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__btn--secondary {
    margin-left: 10px;
  }
  .page-promotions__why-choose .page-promotions__features {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-grid, .page-promotions__detail-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__faq-image {
    display: none;
  }
  .page-promotions__cta-image {
    display: none;
  }
  .page-promotions__steps li {
    padding-left: 45px;
  }
  .page-promotions__steps li::before {
    left: 15px;
    font-size: 1.5em;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-buttons .page-promotions__btn {
    margin-left: 0;
  }
}