.page-promotions {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #F0F2F5;
  --text-dark: #1A202C;
  --bg-dark: #1A202C;
  --bg-medium: #2D3748;
  --bg-light: #4A5568;
  --accent-gold: #FFD700;
  --button-hover: #E6C200;
}

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

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

.page-promotions h1, .page-promotions h2, .page-promotions h3, .page-promotions h4 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

.page-promotions h2 {
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 30px;
}

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

.page-promotions h4 {
  font-size: 1.5em;
  color: var(--text-light);
}

.page-promotions p {
  color: var(--text-light);
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.page-promotions a:hover {
  color: var(--button-hover);
  text-decoration: underline;
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions .large-button {
  padding: 18px 50px;
  font-size: 1.3em;
}

/* Hero Banner */
.page-promotions .hero-banner {
  position: relative;
  width: 100%;
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.page-promotions .hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Adjust max-width to match image width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions .hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promotions .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promotions .hero-content h1 {
  margin-bottom: 15px;
  font-size: 3.5em;
  line-height: 1.2;
}

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

/* Introduction Section */
.page-promotions .introduction-section {
  background-color: var(--bg-medium);
}

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

.page-promotions .feature-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions .feature-item .feature-icon {
  width: 120px; /* Adjusted size for content image, not icon */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions .feature-item h3 {
  color: var(--accent-gold);
}

/* Promotion Categories */
.page-promotions .promotion-categories {
  background-color: var(--bg-dark);
}

.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-color: var(--bg-medium);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions .promo-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions .promo-card h3 {
  padding: 20px 20px 10px;
  margin-bottom: 0;
  color: var(--accent-gold);
}

.page-promotions .promo-card h3 a {
  color: var(--accent-gold);
  text-decoration: none;
}

.page-promotions .promo-card h3 a:hover {
  color: var(--button-hover);
  text-decoration: underline;
}

.page-promotions .promo-card p {
  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 20px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-promotions .promo-card .card-button:hover {
  background: var(--button-hover);
  color: var(--bg-dark);
  text-decoration: none;
}

/* How to Claim Section */
.page-promotions .how-to-claim {
  background-color: var(--bg-medium);
}

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

.page-promotions .step-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions .step-item .step-icon {
  width: 100px; /* Adjusted size for content image, not icon */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions .step-item h4 {
  color: var(--accent-gold);
}

.page-promotions .text-center {
  text-align: center;
  margin-top: 40px;
}

/* Terms & Conditions */
.page-promotions .terms-conditions {
  background-color: var(--bg-dark);
  text-align: left;
}

.page-promotions .terms-conditions ul {
  list-style: disc inside;
  color: var(--text-light);
  font-size: 1.1em;
  line-height: 1.8;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions .terms-conditions ul li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions .faq-section {
  background-color: var(--bg-medium);
}

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

.page-promotions .faq-item {
  margin-bottom: 15px;
}

.page-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--bg-light);
  border: 1px solid var(--bg-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .faq-question:hover {
  background: #5a647a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions .faq-question h3 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.25em;
  flex-grow: 1;
  text-align: left;
}

.page-promotions .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--accent-gold);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 25px;
  background: #3A455A;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--bg-dark);
  border-top: none;
}

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

.page-promotions .faq-answer p {
  color: var(--text-light);
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions .hero-content h1 {
    font-size: 3em;
  }
  .page-promotions .hero-content p {
    font-size: 1.2em;
  }
  .page-promotions h1 {
    font-size: 2.8em;
  }
  .page-promotions h2 {
    font-size: 2.2em;
  }
  .page-promotions h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promotions section {
    padding: 40px 0;
  }
  .page-promotions .hero-content {
    width: 95%;
    padding: 20px;
  }
  .page-promotions .hero-content h1 {
    font-size: 2.5em;
  }
  .page-promotions .hero-content p {
    font-size: 1em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions .large-button {
    padding: 15px 40px;
    font-size: 1.1em;
  }
  .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: 0.95em;
  }
  .page-promotions .feature-item, .page-promotions .promo-card, .page-promotions .step-item {
    padding: 20px;
  }
  .page-promotions .feature-item .feature-icon, .page-promotions .step-item .step-icon {
    width: 100px;
  }
  .page-promotions .promo-card .card-image {
    height: 180px;
  }
  .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-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-content h1 {
    font-size: 1.8em;
  }
  .page-promotions .hero-content p {
    font-size: 0.9em;
  }
  .page-promotions h1 {
    font-size: 1.8em;
  }
  .page-promotions h2 {
    font-size: 1.5em;
  }
  .page-promotions h3 {
    font-size: 1.2em;
  }
  .page-promotions .features-grid, .page-promotions .category-grid, .page-promotions .steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .promo-card .card-button {
    width: calc(100% - 40px);
  }
  .page-promotions .faq-question h3 {
    font-size: 1em;
  }
  .page-promotions .faq-toggle {
    font-size: 1.3em;
  }
}