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

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

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

.page-promotions h1,
.page-promotions h2 {
  color: #007bff;
  margin-bottom: 25px;
  font-weight: 700;
}

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

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

.page-promotions h3 {
  color: #007bff;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
  border: none;
  cursor: pointer;
}

.page-promotions .cta-button:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-promotions .secondary-button {
  background: #007bff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-promotions .secondary-button:hover {
  background: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
}

/* Hero Banner */
.page-promotions .hero-banner {
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  overflow: hidden;
}

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

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

.page-promotions .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 90%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-promotions .hero-content h1 {
  color: #fff;
  font-size: 3.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.page-promotions .hero-content p {
  color: #eee;
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Intro Section */
.page-promotions .section-intro {
  background-color: #fff;
}

/* Promotion Categories */
.page-promotions .promotion-categories {
  background-color: #f1f1f1;
}

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

.page-promotions .promo-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions .promo-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions .promo-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions .promo-card h3 a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions .promo-card h3 a:hover {
  color: #0056b3;
}

.page-promotions .promo-card p {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
}

.page-promotions .card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions .card-button:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* How To Claim */
.page-promotions .how-to-claim {
  background-color: #fff;
}

.page-promotions .how-to-claim ol {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions .how-to-claim ol li {
  background: #f8f9fa;
  border-left: 5px solid #007bff;
  margin-bottom: 15px;
  padding: 20px;
  font-size: 1.1em;
  color: #333;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-promotions .how-to-claim ol li strong {
  color: #007bff;
}

.page-promotions .how-to-claim ol li a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions .how-to-claim ol li a:hover {
  text-decoration: underline;
}

/* Terms & Conditions */
.page-promotions .terms-conditions {
  background-color: #f1f1f1;
}

.page-promotions .terms-conditions ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions .terms-conditions ul li {
  background: #fff;
  border-left: 4px solid #ffc107;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 1em;
  color: #444;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions .terms-conditions ul li strong {
  color: #ffc107;
}

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

.page-promotions .faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.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.25em;
  color: #333;
}

.page-promotions .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

.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;
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

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

.page-promotions .faq-answer p {
  margin-bottom: 0;
  color: #555;
}

/* Final CTA Section */
.page-promotions .final-cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
}

.page-promotions .final-cta h2 {
  color: #fff;
  font-size: 3em;
  margin-bottom: 20px;
}

.page-promotions .final-cta p {
  color: #eee;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions h1 {
    font-size: 2.8em;
  }

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

  .page-promotions .hero-content h1 {
    font-size: 2.8em;
  }

  .page-promotions .hero-content p {
    font-size: 1.1em;
  }

  .page-promotions .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

@media (max-width: 768px) {
  .page-promotions section {
    padding: 40px 0;
  }

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

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

  .page-promotions h3 {
    font-size: 1.4em;
  }

  .page-promotions p {
    font-size: 1em;
  }

  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-promotions .hero-content {
    padding: 15px;
    max-width: 95%;
  }

  .page-promotions .hero-content h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promotions .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions .promo-card {
    padding: 20px;
  }

  .page-promotions .promo-card .card-image {
    height: 180px;
  }

  .page-promotions .how-to-claim ol li,
  .page-promotions .terms-conditions ul li {
    padding: 15px;
    font-size: 0.95em;
  }

  .page-promotions .faq-question {
    padding: 15px 20px;
  }

  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }

  .page-promotions .faq-toggle {
    font-size: 1.5em;
  }

  .page-promotions .faq-item.active .faq-answer {
    padding: 10px 20px;
  }

  .page-promotions .final-cta h2 {
    font-size: 2em;
  }
}

@media (max-width: 576px) {
  .page-promotions h1 {
    font-size: 1.8em;
  }

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

  .page-promotions .hero-content h1 {
    font-size: 1.8em;
  }

  .page-promotions .hero-content p {
    font-size: 0.9em;
  }

  .page-promotions .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-promotions .category-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions .promo-card .card-image {
    height: 150px;
  }

  .page-promotions .final-cta h2 {
    font-size: 1.8em;
  }
}