.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 40px 0; /* body has padding-top, use small padding for hero */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.page-promotions__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}

.page-promotions__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions__cta-button--large {
  font-size: 1.3rem;
  padding: 18px 35px;
}

.page-promotions__current-promotions-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-conditions-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promotion-card,
.page-promotions__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__card-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-promotions__step-card {
  position: relative;
  padding: 30px;
  text-align: center;
  border: 1px solid #2E7A4E;
}

.page-promotions__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 25px;
}

.page-promotions__step-button {
  display: inline-block;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid #2E7A4E;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__step-button:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions__terms-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #A7D9B8;
  position: relative;
  padding-left: 35px;
}

.page-promotions__terms-item::before {
  content: '✓';
  color: #57E38D; /* Glow */
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions__full-terms-link {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-promotions__full-terms-link a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__full-terms-link a:hover {
  text-decoration: underline;
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 30px auto 0 auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  color: #F2FFF6;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question:hover {
  background-color: #1E3A2A;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D;
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: #1E3A2A;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .page-promotions__hero-content {
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-promotions__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__cta-button--large {
    font-size: 1.1rem;
    padding: 15px 30px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-promotions__section-description {
    font-size: 0.9rem;
  }

  .page-promotions__current-promotions-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__promotions-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-text {
    font-size: 0.85rem;
  }

  .page-promotions__card-button {
    font-size: 0.85rem;
    padding: 8px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__step-card {
    padding: 25px;
  }

  .page-promotions__step-title {
    font-size: 1.1rem;
  }

  .page-promotions__step-text {
    font-size: 0.85rem;
  }

  .page-promotions__step-button {
    font-size: 0.85rem;
    padding: 8px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__terms-item {
    font-size: 0.85rem;
    padding-left: 30px;
  }

  .page-promotions__terms-item::before {
    left: 10px;
  }

  .page-promotions__full-terms-link {
    font-size: 0.9rem;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    font-size: 0.85rem;
    padding: 0 20px 15px;
  }

  /* Image responsiveness for all img tags */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Video responsiveness for all video tags */
  .page-promotions video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All containers with images/videos */
  .page-promotions__hero-image-wrapper,
  .page-promotions__promotions-grid,
  .page-promotions__promotion-card,
  .page-promotions__steps-grid,
  .page-promotions__step-card,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .page-promotions__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__hero-image {
    min-width: unset;
    min-height: unset;
  }
}