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

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

.page-promotions section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-promotions section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-promotions h1,
.page-promotions h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions h1 {
  font-size: 3em;
}

.page-promotions h2 {
  font-size: 2.5em;
}

.page-promotions h3 {
  color: var(--primary-color-dark);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions h4 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions p {
  margin-bottom: 15px;
  color: #555;
}

.page-promotions .text-center {
  text-align: center;
}

/* Hero Section */
.page-promotions .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A2463 100%); /* Darker shade of primary for depth */
  color: #ffffff;
}

.page-promotions .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-promotions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions .hero-content h1 {
  color: var(--secondary-color);
  font-size: 3.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions .hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions .cta-button:hover {
  background: #FFEB3B; /* Lighter gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-promotions .section-why-choose {
  background-color: #f0f4f8; /* Light grey-blue */
}

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

.page-promotions .promo-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions .promo-item img {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small but fit */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions .promo-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promotions .promo-item p {
  color: #666;
}

/* Top Promos Section */
.page-promotions .section-top-promos {
  background-color: #ffffff;
}

.page-promotions .promo-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions .promo-card {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions .promo-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions .promo-card h3 {
  font-size: 1.5em;
  padding: 20px 20px 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-promotions .promo-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-promotions .promo-card h3 a:hover {
  color: var(--secondary-color);
}

.page-promotions .promo-card p {
  padding: 0 20px 20px;
  color: #555;
  flex-grow: 1;
}

.page-promotions .btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions .btn-small:hover {
  background: #FFEB3B;
  transform: translateY(-2px);
}

/* How to Claim Section */
.page-promotions .section-how-to-claim {
  background-color: #f0f4f8;
}

.page-promotions .section-how-to-claim ol {
  list-style: none;
  counter-reset: promo-step;
  padding: 0;
  margin-top: 40px;
}

.page-promotions .section-how-to-claim ol li {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  position: relative;
  padding-left: 80px;
}

.page-promotions .section-how-to-claim ol li::before {
  counter-increment: promo-step;
  content: counter(promo-step);
  position: absolute;
  left: 25px;
  top: 30px;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions .section-how-to-claim ol li h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.page-promotions .btn-outline {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-promotions .btn-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Terms Section */
.page-promotions .section-terms {
  background-color: #ffffff;
}

.page-promotions .section-terms ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions .section-terms ul li {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-left: 5px solid var(--secondary-color);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions .section-terms ul li h3 {
  margin-top: 0;
  color: var(--primary-color-dark);
  font-size: 1.5em;
}

/* FAQ Section */
.page-promotions .section-faq {
  background-color: #f0f4f8;
}

.page-promotions .faq-list {
  margin-top: 40px;
}

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
  background: #f0f0f0;
}

.page-promotions .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color-dark);
}

.page-promotions .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-promotions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
  color: #555;
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-promotions .faq-answer p {
  margin: 0;
}

/* Bottom CTA Section */
.page-promotions .section-cta-bottom {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A2463 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0;
}

.page-promotions .section-cta-bottom h2 {
  color: var(--secondary-color);
  font-size: 3em;
  margin-bottom: 20px;
}

.page-promotions .section-cta-bottom p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions .hero-content h1 {
    font-size: 3em;
  }
  .page-promotions h2 {
    font-size: 2em;
  }
  .page-promotions h3 {
    font-size: 1.4em;
  }
  .page-promotions .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions section {
    padding: 40px 0;
  }
  .page-promotions .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .page-promotions .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promotions h3 {
    font-size: 1.2em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 20px;
  }
  .page-promotions .promo-grid, .page-promotions .promo-card-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions .promo-item img, .page-promotions .promo-card img {
    height: 180px;
  }
  .page-promotions .section-how-to-claim ol li {
    padding: 20px 20px 20px 65px;
  }
  .page-promotions .section-how-to-claim ol li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1em;
  }
  .page-promotions .faq-toggle {
    font-size: 20px;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 2.2em;
  }
  .page-promotions .section-cta-bottom p {
    font-size: 1em;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-content h1 {
    font-size: 2em;
  }
  .page-promotions h2 {
    font-size: 1.5em;
  }
  .page-promotions .cta-button {
    width: 90%;
    max-width: 300px;
  }
  .page-promotions .promo-item img, .page-promotions .promo-card img {
    height: 150px;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 1.8em;
  }
}