.page-promotions {
  --primary-color: #E44D26;
  --secondary-color: #FFB800;
  --dark-text-color: #333333;
  --light-text-color: #ffffff;
  --background-light: #f8f8f8;
  --background-medium: #eeeeee;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-text-color);
}

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

.page-promotions .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

/* 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%, var(--secondary-color) 100%);
  color: var(--light-text-color);
}

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

.page-promotions .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 12px;
}

.page-promotions .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--light-text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--light-text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Section Intro */
.page-promotions .section-intro {
  background-color: var(--background-light);
  padding: 80px 0;
  text-align: center;
}

/* Promotion Types Section */
.page-promotions .section-promotion-types {
  padding: 80px 0;
  background-color: var(--background-medium);
}

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

.page-promotions .promotion-card {
  background: var(--light-text-color);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-promotions .promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-promotions .card-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin: 25px 15px 15px 15px;
  font-weight: bold;
}

.page-promotions .card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-promotions .card-text {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions .card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 20px 25px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions .card-button:hover {
  background: var(--secondary-color);
  color: var(--dark-text-color);
  transform: translateY(-2px);
}

/* How to Claim Section */
.page-promotions .section-how-to-claim {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-promotions .claim-steps {
  list-style: none;
  padding: 0;
  margin: 50px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions .claim-steps li {
  background: var(--light-text-color);
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--dark-text-color);
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.page-promotions .claim-steps li:hover {
  transform: translateX(10px);
}

.page-promotions .claim-steps li strong {
  color: var(--primary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 8px;
}

/* Terms & Conditions Section */
.page-promotions .section-terms-conditions {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.page-promotions .terms-list {
  list-style: disc;
  padding-left: 40px;
  margin: 50px auto 0 auto;
  max-width: 900px;
  text-align: left;
  font-size: 1.1em;
  color: #444444;
}

.page-promotions .terms-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-promotions .terms-list li strong {
  color: var(--primary-color);
}

/* FAQ Section */
.page-promotions .section-faq {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-promotions .faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--light-text-color);
  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.3em;
  color: var(--dark-text-color);
}

.page-promotions .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.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: #f9f9f9;
  color: #555555;
}

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

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

/* Call to Action Bottom Section */
.page-promotions .section-cta-bottom {
  background: linear-gradient(45deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--light-text-color);
}

.page-promotions .section-cta-bottom .section-title {
  color: var(--light-text-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions .section-cta-bottom .section-description {
  color: var(--light-text-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions .section-cta-bottom .cta-button {
  background: var(--light-text-color);
  color: var(--primary-color);
  margin-top: 40px;
}

.page-promotions .section-cta-bottom .cta-button:hover {
  background: var(--background-medium);
  color: var(--dark-text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions .section-title {
    font-size: 2em;
  }
  .page-promotions .hero-title {
    font-size: 2.8em;
  }
  .page-promotions .hero-description {
    font-size: 1.1em;
  }
  .page-promotions .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-promotions .promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions .card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-promotions .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-promotions .hero-image img {
    border-radius: 8px;
  }
  .page-promotions .hero-content {
    padding: 20px;
    border-radius: 8px;
  }
  .page-promotions .hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promotions .hero-description {
    font-size: 1em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-promotions .promotion-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions .promotion-card {
    margin-bottom: 20px;
  }
  .page-promotions .card-title {
    font-size: 1.4em;
  }
  .page-promotions .card-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions .claim-steps {
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-promotions .claim-steps li {
    padding: 20px 25px;
    font-size: 1em;
  }
  .page-promotions .claim-steps li strong {
    font-size: 1.1em;
  }
  .page-promotions .terms-list {
    padding-left: 20px;
    margin-top: 30px;
    font-size: 1em;
  }
  .page-promotions .faq-list {
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions .faq-toggle {
    font-size: 1.8em;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-title {
    font-size: 1.8em;
  }
  .page-promotions .hero-description {
    font-size: 0.95em;
  }
  .page-promotions .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-promotions .section-title {
    font-size: 1.5em;
  }
  .page-promotions .card-title {
    font-size: 1.2em;
  }
  .page-promotions .card-text {
    font-size: 0.9em;
  }
  .page-promotions .card-button {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .page-promotions .claim-steps li,
  .page-promotions .terms-list li,
  .page-promotions .faq-question h3,
  .page-promotions .faq-answer p {
    font-size: 0.9em;
  }
}