.page-promotions {
  --primary-color: #0A2E5B;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #0A2E5B;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

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

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

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

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

/* Hero Section */
.page-promotions .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A4A85 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-promotions .hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-promotions .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

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

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

.page-promotions .intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions .intro-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-promotions .intro-item p {
  color: #666666;
  font-size: 1em;
}

/* Promotion Types Section */
.page-promotions .types-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a4a85 100%);
  color: var(--text-light);
}

.page-promotions .types-section .section-title {
  color: var(--secondary-color);
}

.page-promotions .types-section .section-description {
  color: #e0e0e0;
}

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

.page-promotions .promotion-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.page-promotions .card-content {
  padding: 25px;
}

.page-promotions .promotion-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  min-height: 70px; /* Ensure consistent height for titles */
}

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

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

.page-promotions .promotion-card p {
  color: #666666;
  font-size: 1em;
  margin-bottom: 20px;
  min-height: 90px; /* Ensure consistent height for descriptions */
}

.page-promotions .card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions .card-button:hover {
  background: #072247; /* Slightly darker primary */
}

/* Claim Guide Section */
.page-promotions .claim-guide-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.page-promotions .claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  counter-reset: step-counter;
}

.page-promotions .claim-steps li {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.page-promotions .claim-steps li:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions .claim-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions .claim-steps li h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions .claim-steps li p {
  font-size: 1.1em;
  color: #555555;
}

.page-promotions .claim-steps li a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions .claim-steps li a:hover {
  color: var(--secondary-color);
}

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

/* Terms Section */
.page-promotions .terms-section {
  padding: 80px 0;
  background: #f0f4f8;
}

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

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

.page-promotions .final-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #666666;
  font-size: 1em;
}

.page-promotions .final-note a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions .final-note a:hover {
  color: var(--secondary-color);
}

/* FAQ Section */
.page-promotions .faq-section {
  padding: 80px 0;
  background: var(--bg-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 15px rgba(0, 0, 0, 0.05);
}

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

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

.page-promotions .faq-question h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  margin: 0;
  flex-grow: 1;
}

.page-promotions .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.page-promotions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-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: #fdfdfd;
  color: #555555;
}

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

.page-promotions .faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

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

.page-promotions .cta-section .section-title {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-promotions .cta-section .section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions .hero-title {
    font-size: 3em;
  }
  .page-promotions .section-title {
    font-size: 2.2em;
  }
  .page-promotions .section-description {
    font-size: 1em;
  }
  .page-promotions .promotion-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions .promotion-card h3 {
    min-height: auto;
  }
  .page-promotions .promotion-card p {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-promotions .hero-section {
    padding: 60px 0;
  }
  .page-promotions .hero-title {
    font-size: 2.5em;
  }
  .page-promotions .hero-description {
    font-size: 1.1em;
  }
  .page-promotions .section-title {
    font-size: 2em;
    padding-top: 20px;
  }
  .page-promotions .section-description {
    margin-bottom: 30px;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions .large-button {
    padding: 15px 40px;
    font-size: 1.2em;
  }
  .page-promotions .intro-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .promotion-card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .claim-steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
  }
  .page-promotions .claim-steps li::before {
    margin-right: 0;
    margin-bottom: 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: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-title {
    font-size: 2em;
  }
  .page-promotions .hero-description {
    font-size: 0.95em;
  }
  .page-promotions .section-title {
    font-size: 1.8em;
  }
  .page-promotions .cta-button {
    font-size: 0.9em;
    padding: 10px 25px;
  }
  .page-promotions .large-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-promotions .intro-item h3 {
    font-size: 1.5em;
  }
  .page-promotions .promotion-card h3 {
    font-size: 1.4em;
  }
  .page-promotions .claim-steps li h3 {
    font-size: 1.5em;
  }
  .page-promotions .terms-list {
    font-size: 0.95em;
  }
  .page-promotions .faq-question h3 {
    font-size: 1em;
  }
}