.page-promotions {
  --primary-color: #1A2B4C;
  --secondary-color: #FFD700;
  --text-dark: #1A2B4C;
  --text-light: #ffffff;
  --bg-light: #f4f7fa;
  --bg-dark: #121e33;
  --accent-light: #fff3e0;
  --border-color: #e0e0e0;
}

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

.page-promotions section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-promotions h1,
.page-promotions h2,
.page-promotions h3 {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-promotions h2 {
  font-size: 2.5em;
  color: var(--text-dark);
}

.page-promotions h3 {
  font-size: 1.8em;
  color: var(--text-dark);
}

.page-promotions p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.page-promotions .hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5078 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-promotions .hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-promotions .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-promotions .hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
}

.page-promotions .hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

.page-promotions .hero-image .main-promo-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions .promotion-categories {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.page-promotions .promotion-categories p {
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-promotions .promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions .promo-card .card-img {
  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;
  color: var(--text-dark);
}

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

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

.page-promotions .promo-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions .promo-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to the bottom */
}

.page-promotions .promo-button:hover {
  background-color: #2c426a;
}

.page-promotions .how-to-claim {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-promotions .how-to-claim ol {
  max-width: 800px;
  margin: 40px auto;
  list-style-type: decimal;
  padding-left: 25px;
}

.page-promotions .how-to-claim ol li {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.page-promotions .how-to-claim ol li strong {
  color: var(--text-dark);
}

.page-promotions .how-to-claim ol li a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-promotions .action-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-promotions .cta-button-secondary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.page-promotions .cta-button-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions .why-daga68-promos {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-promotions .why-daga68-promos h2 {
  color: var(--secondary-color);
}

.page-promotions .why-daga68-promos p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-promotions .why-daga68-promos ul {
  max-width: 900px;
  margin: 40px auto;
  list-style-type: disc;
  padding-left: 40px;
}

.page-promotions .why-daga68-promos ul li {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.page-promotions .why-daga68-promos ul li strong {
  color: var(--secondary-color);
}

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

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

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

.page-promotions .faq-question:hover {
  background: var(--accent-light);
}

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

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

.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: #444;
}

.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 {
  text-align: left;
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.7;
}

.page-promotions .faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions .faq-answer a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions h1 {
    font-size: 2.8em;
  }
  .page-promotions h2 {
    font-size: 2em;
  }
  .page-promotions .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@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 .hero-content {
    padding: 0 15px;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions .category-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .promo-card {
    padding: 20px;
  }
  .page-promotions .promo-card .card-img {
    height: 180px;
  }
  .page-promotions .how-to-claim ol {
    padding-left: 20px;
    margin: 30px auto;
  }
  .page-promotions .how-to-claim ol li {
    font-size: 1em;
  }
  .page-promotions .action-buttons {
    flex-direction: column;
  }
  .page-promotions .cta-button-secondary {
    width: 100%;
    margin: 10px 0;
  }
  .page-promotions .why-daga68-promos ul {
    padding-left: 30px;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions .faq-toggle {
    font-size: 20px;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions h1 {
    font-size: 1.8em;
  }
  .page-promotions h2 {
    font-size: 1.6em;
  }
  .page-promotions h3 {
    font-size: 1.2em;
  }
  .page-promotions .hero-content p {
    font-size: 1em;
  }
  .page-promotions .cta-button {
    padding: 10px 25px;
    font-size: 0.95em;
  }
  .page-promotions .promo-card .card-img {
    height: 150px;
  }
  .page-promotions .promo-button {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  .page-promotions .why-daga68-promos ul {
    padding-left: 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1em;
  }
}