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

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

.page-promotions .section-title {
  font-size: 36px;
  color: #F6AD55;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions .section-text {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E53E3E;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions .cta-button:hover {
  background: #F6AD55;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions .secondary-button {
  background: #1A202C;
  border: 2px solid #E53E3E;
  color: #E53E3E;
  margin-left: 20px;
}

.page-promotions .secondary-button:hover {
  background: #E53E3E;
  color: #ffffff;
  border-color: #F6AD55;
}

/* 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, #1A202C, #3A0F0F);
  overflow: hidden;
}

.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;
  z-index: 1;
}

.page-promotions .hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  display: block; /* Ensure image behaves as a block element */
}

.page-promotions .hero-content {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions .hero-title {
  font-size: 48px;
  color: #F6AD55;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions .hero-description {
  font-size: 20px;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-promotions .intro-section {
  padding: 80px 0;
  background-color: #2D3748;
}

/* Promo Categories Section */
.page-promotions .promo-categories {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-promotions .promo-card {
  background-color: #2D3748;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  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.4);
}

.page-promotions .promo-card .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #3A0F0F;
}

.page-promotions .promo-card .card-title {
  font-size: 24px;
  color: #F6AD55;
  padding: 20px 20px 10px;
  margin: 0;
}

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

.page-promotions .promo-card .card-title a:hover {
  color: #E53E3E;
}

.page-promotions .promo-card .card-text {
  font-size: 16px;
  color: #C0C0C0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions .promo-card .card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: #E53E3E;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions .promo-card .card-button:hover {
  background: #F6AD55;
}

/* Claim Guide Section */
.page-promotions .claim-guide-section {
  padding: 80px 0;
  background-color: #2D3748;
}

.page-promotions .guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions .guide-list li {
  background-color: #1A202C;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E53E3E;
}

.page-promotions .guide-list li strong {
  color: #F6AD55;
  font-size: 19px;
}

/* Terms & Conditions Section */
.page-promotions .terms-conditions-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-promotions .terms-list {
  list-style: disc;
  margin-left: 25px;
  color: #C0C0C0;
}

.page-promotions .terms-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-promotions .terms-list li strong {
  color: #F6AD55;
}

/* FAQ Section */
.page-promotions .faq-section {
  padding: 80px 0;
  background-color: #2D3748;
}

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

.page-promotions .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #F6AD55;
}

.page-promotions .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E53E3E;
  transition: transform 0.3s ease;
}

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

.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-color: #3A0F0F;
  color: #C0C0C0;
  font-size: 16px;
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px 25px;
}

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

/* Call to Action Section */
.page-promotions .call-to-action-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

.page-promotions .call-to-action-section .section-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions .hero-title {
    font-size: 40px;
  }

  .page-promotions .hero-description {
    font-size: 18px;
  }

  .page-promotions .section-title {
    font-size: 30px;
  }

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

  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .page-promotions .secondary-button {
    margin-left: 10px;
    margin-top: 15px; /* For stacking on smaller screens */
  }
}

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

  .page-promotions .hero-image {
    max-height: 350px;
    margin-bottom: 30px;
  }

  .page-promotions .hero-title {
    font-size: 32px;
  }

  .page-promotions .hero-description {
    font-size: 16px;
  }

  .page-promotions .section-title {
    font-size: 26px;
  }

  .page-promotions .promo-card .card-title {
    font-size: 20px;
  }

  .page-promotions .promo-card .card-text {
    font-size: 15px;
  }

  .page-promotions .promo-card .card-button {
    font-size: 15px;
    padding: 10px 0;
  }

  .page-promotions .guide-list li {
    font-size: 16px;
    padding: 15px;
  }

  .page-promotions .guide-list li strong {
    font-size: 17px;
  }

  .page-promotions .faq-question h3 {
    font-size: 16px;
  }

  .page-promotions .faq-toggle {
    font-size: 20px;
  }

  .page-promotions .faq-answer {
    font-size: 15px;
  }

  .page-promotions .secondary-button {
    display: block;
    margin: 15px auto 0;
  }

  .page-promotions .cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-title {
    font-size: 28px;
  }

  .page-promotions .hero-description {
    font-size: 15px;
  }

  .page-promotions .section-title {
    font-size: 24px;
  }

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

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

  .page-promotions .cta-button, .page-promotions .secondary-button {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }
  
  .page-promotions .secondary-button {
    margin-top: 15px;
  }
}