/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* General text color, good contrast on light backgrounds */
  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-child(even) {
  background-color: #f8f8f8;
}

.page-promotions__hero {
  background-image: linear-gradient(135deg, #1A2B47, #3a4d6b);
  color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

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

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B47; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

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

.page-promotions__why-choose .page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.page-promotions__feature-item h3 {
  color: #1A2B47;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions__promotion-card .page-promotions__card-title {
  font-size: 1.5em;
  color: #1A2B47;
  padding: 20px 25px 10px;
  font-weight: bold;
}

.page-promotions__promotion-card .page-promotions__card-description {
  padding: 0 25px 20px;
  color: #555555;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B47;
  padding: 12px 25px;
  border-radius: 0 0 10px 10px; /* Rounded only at bottom */
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 100%; /* Make button full width of card */
  box-sizing: border-box;
}

.page-promotions__card-button:hover {
  background-color: #e6c200;
}

.page-promotions__how-to-claim .page-promotions__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__steps-list li {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.page-promotions__steps-list h4 {
  color: #1A2B47;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-promotions__inline-link {
  color: #1A2B47; /* Dark blue for inline links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__inline-link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-promotions__important-notes ul {
  list-style: disc;
  margin-left: 20px;
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding-left: 20px;
  color: #555555;
}

.page-promotions__important-notes ul li {
  margin-bottom: 10px;
}

.page-promotions__important-notes strong {
  color: #1A2B47;
}

.page-promotions__faq .page-promotions__faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__faq-answer {
  color: #555555;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-promotions__final-cta {
  background-image: linear-gradient(135deg, #FFD700, #e6c200);
  color: #1A2B47;
  text-align: center;
  padding: 80px 0;
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #1A2B47;
  margin-bottom: 15px;
}

.page-promotions__final-cta .page-promotions__section-subtitle {
  color: #333333;
  margin-bottom: 40px;
}

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

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

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

  .page-promotions__why-choose .page-promotions__features-grid,
  .page-promotions__promotion-list,
  .page-promotions__how-to-claim .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }
}

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

  .page-promotions__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-promotions__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

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

  .page-promotions__promotion-card .page-promotions__card-title {
    font-size: 1.3em;
  }
}