.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-color, #333);
  line-height: 1.6;
}

.page-promotions__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 300;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-promotions__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

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

.page-promotions__why-choose {
  background-color: #f9f9f9;
}

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

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

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

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

.page-promotions__feature-description {
  font-size: 1em;
  color: #666;
}

.page-promotions__featured-promotions {
  background-color: #fff;
}

.page-promotions__promotion-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

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

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

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

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

.page-promotions__button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
}

.page-promotions__button:hover {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim {
  background-color: #f0f6fa;
}

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

.page-promotions__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-promotions__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions__terms-conditions {
  background-color: #fff;
}

.page-promotions__terms-list {
  list-style: disc inside;
  margin: 0 auto;
  max-width: 900px;
  padding-left: 20px;
  color: #444;
  font-size: 1.05em;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

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

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

.page-promotions__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  background-color: #003366;
  color: #FFCC00;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #004080;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fefefe;
  color: #333;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-promotions__final-cta {
  background: linear-gradient(45deg, #003366, #FFCC00);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.page-promotions__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions__cta-button--primary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions__cta-button--primary:hover {
  background-color: #004080;
  color: #FFCC00;
  border-color: #e6b800;
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #fff;
  color: #003366;
  border-color: #fff;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-promotions__hero {
    flex-direction: row;
    text-align: left;
    padding: 100px 40px;
  }

  .page-promotions__hero-content {
    margin-right: 50px;
    margin-bottom: 0;
  }

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

  .page-promotions__hero-image-wrapper {
    flex-shrink: 0;
    width: 45%;
  }

  .page-promotions__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-promotions__promotion-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-promotions__promotion-card {
    flex-direction: row;
  }

  .page-promotions__promotion-image {
    width: 250px;
    height: auto;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid #eee;
  }

  .page-promotions__promotion-content {
    padding: 30px;
  }

  .page-promotions__steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 4em;
  }

  .page-promotions__hero-subtitle {
    font-size: 1.4em;
  }

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

  .page-promotions__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-promotions__promotion-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-promotions__steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-promotions__final-cta-title {
    font-size: 3em;
  }
}