/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark grey for main text, good contrast */
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFCC00; /* Accent color for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

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

.page-promotions__btn--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Dark blue text */
}

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

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

.page-promotions__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-promotions__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

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

.page-promotions__intro, .page-promotions__list-section, .page-promotions__how-to-claim, .page-promotions__faq, .page-promotions__final-cta {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promotions__intro {
  background-color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #444444; /* Slightly lighter than main text for readability */
}

.page-promotions__features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promotions__feature-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

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

.page-promotions__feature-item h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

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

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

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  background-color: #003366;
  color: #FFCC00;
  align-self: flex-start;
}

.page-promotions__btn--small:hover {
  background-color: #002244;
  color: #FFDDAA;
}

.page-promotions__how-to-claim {
  background-color: #eef7ff; /* Lighter blue background */
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions__steps-list li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FFCC00; /* Accent border */
}

.page-promotions__steps-list h4 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__steps-list p {
  font-size: 1em;
  color: #555555;
}

.page-promotions__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__inline-link:hover {
  color: #FFCC00;
}

.page-promotions__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #003366; /* Dark blue background */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__call-to-action p {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFCC00;
  font-weight: bold;
}

.page-promotions__btn--large {
  padding: 16px 35px;
  font-size: 1.2em;
  border-radius: 8px;
  background-color: #FFCC00;
  color: #003366;
}

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

.page-promotions__faq {
  background-color: #ffffff;
}

.page-promotions__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

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

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555555;
  padding-left: 15px;
  border-left: 3px solid #FFCC00;
  margin-top: 15px;
}

.page-promotions__final-cta {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promotions__final-cta p {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #FFCC00;
  font-weight: bold;
}

.page-promotions__btn--final {
  background-color: #FFCC00;
  color: #003366;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__title {
    font-size: 2.8em;
  }
  .page-promotions__subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__feature-item {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 20px;
  }
  .page-promotions__title {
    font-size: 2.2em;
  }
  .page-promotions__subtitle {
    font-size: 1em;
  }
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text-content {
    font-size: 1em;
  }
  .page-promotions__features {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__feature-item {
    max-width: 90%;
  }
  .page-promotions__call-to-action p {
    font-size: 1.2em;
  }
  .page-promotions__btn--large {
    font-size: 1.1em;
    padding: 14px 25px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__final-cta p {
    font-size: 1.5em;
  }
  .page-promotions__btn--final {
    font-size: 1.2em;
    padding: 16px 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions__title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__promo-title {
    font-size: 1.4em;
  }
  .page-promotions__promo-description {
    font-size: 0.95em;
  }
  .page-promotions__btn--small {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .page-promotions__steps-list li {
    padding: 20px;
  }
  .page-promotions__steps-list h4 {
    font-size: 1.2em;
  }
  .page-promotions__final-cta p {
    font-size: 1.2em;
  }
  .page-promotions__btn--final {
    font-size: 1em;
    padding: 12px 20px;
  }
}