.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #ffffff;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promotions__section-title--light {
  color: #ffffff;
}

.page-promotions__section-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__section-description--light {
  color: #f0f0f0;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f8f8f8;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__intro-description {
  font-size: 19px;
  line-height: 1.7;
  color: #444444;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Register button color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 8, 8, 0.4);
  border: none;
}

.page-promotions__cta-button:hover {
  background: #a00606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(195, 8, 8, 0.6);
}

/* Why Promotions Section */
.page-promotions__why-promotions-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promotions__advantage-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions__advantage-item {
  background-color: #f0fdf5;
  border: 1px solid #e0ffe0;
  border-radius: 10px;
  padding: 25px;
  font-size: 17px;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-promotions__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Promotion Types Section */
.page-promotions__promotion-types-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__promo-card .page-promotions__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #017439;
  padding: 20px 25px 10px;
  margin: 0;
  line-height: 1.4;
}

.page-promotions__promo-card .page-promotions__card-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn-primary {
  display: block;
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  padding: 12px 20px;
  background-color: #017439;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
}

.page-promotions__promo-card .page-promotions__btn-primary:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promotions__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-promotions__step-item {
  counter-increment: step-counter;
  background-color: #f0fdf5;
  border: 1px solid #017439;
  border-radius: 10px;
  padding: 25px 30px 25px 70px;
  margin-bottom: 20px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #017439;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promotions__btn-register {
  background: #C30808;
  color: #FFFF00;
  border: none;
}

.page-promotions__btn-register:hover {
  background: #a00606;
}

.page-promotions__btn-login {
  background: #ffffff;
  color: #C30808;
  border: 2px solid #C30808;
}

.page-promotions__btn-login:hover {
  background: #f0f0f0;
  color: #a00606;
  border-color: #a00606;
}

/* Featured Promotions Section */
.page-promotions__featured-promotions-section {
  padding: 80px 0;
  background-color: #f0fdf5;
}

/* Terms Overview Section */
.page-promotions__terms-overview-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-promotions__terms-overview-section .page-promotions__btn-primary {
  margin-top: 40px;
  background-color: #017439;
  color: #ffffff;
}

.page-promotions__terms-overview-section .page-promotions__btn-primary:hover {
  background-color: #005a2d;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #f5f5f5;
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #017439;
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

/* Final CTA Section */
.page-promotions__cta-section {
  padding: 80px 0;
  background-color: #017439; /* Dark background */
  text-align: center;
}

.page-promotions__cta-section .page-promotions__cta-buttons {
  margin-top: 40px;
}

.page-promotions__btn-download {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-promotions__btn-download:hover {
  background: #e0e0e0;
  color: #005a2d;
  border-color: #005a2d;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__section-description {
    font-size: 17px;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-promotions__intro-description {
    font-size: 18px;
  }
  .page-promotions__promo-image {
    height: 220px;
  }
  .page-promotions__promo-card .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__promo-card .page-promotions__card-description {
    font-size: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-promotions__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions__why-promotions-section,
  .page-promotions__promotion-types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__featured-promotions-section,
  .page-promotions__terms-overview-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    padding: 50px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__advantage-item {
    padding: 20px;
    font-size: 16px;
  }
  .page-promotions__promo-grid {
    gap: 20px;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__promo-card .page-promotions__card-title {
    font-size: 19px;
    padding: 15px 20px 5px;
  }
  .page-promotions__promo-card .page-promotions__card-description {
    font-size: 14px;
    padding: 0 20px 15px;
  }
  .page-promotions__promo-card .page-promotions__btn-primary {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 10px 15px;
    font-size: 15px;
  }
  .page-promotions__step-item {
    padding: 20px 20px 20px 60px;
    font-size: 16px;
  }
  .page-promotions__step-item::before {
    left: 20px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-promotions__cta-buttons a {
    width: 100%;
    max-width: 100% !important;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}