/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

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

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

.page-promotions__section:nth-of-type(even) {
  background-color: #1A3A5D; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions__hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5D 100%);
  color: #FFFFFF;
  overflow: hidden;
}

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

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

.page-promotions__hero .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
}

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

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-promotions__btn--text {
  background-color: transparent;
  color: #FFD700;
  border: none;
  padding: 10px 0;
  font-size: 1em;
}

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

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

.page-promotions__card {
  background-color: #1A3A5D; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-promotions__card-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promotions__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-top: 40px;
}

.page-promotions__list-item {
  background-color: #0A2342; /* Main dark blue */
  border: 1px solid #FFD700; /* Gold border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__item-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions__item-title a {
  color: #FFD700; /* Gold link for titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__item-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions__item-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-promotions__how-to-claim .page-promotions__steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-promotions__step {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #1A3A5D;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promotions__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-promotions__faq-item {
  background-color: #1A3A5D;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  text-align: left;
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  line-height: 1.6;
}

.page-promotions__cta {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient background */
  color: #0A2342; /* Dark blue text on gold */
  padding: 80px 0;
}

.page-promotions__cta-title {
  font-size: 3em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-promotions__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-claim .page-promotions__steps {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__list-item {
    padding: 20px;
  }
  .page-promotions__item-title {
    font-size: 1.3em;
  }
  .page-promotions__step {
    padding: 20px;
  }
  .page-promotions__step-title {
    font-size: 1.4em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
  }
}