.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-promotions__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Use clamp for H1 */
  font-weight: 900;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promotions__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 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 {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__introduction-section,
.page-promotions__how-to-claim-section,
.page-promotions__benefits-section,
.page-promotions__faq-section,
.page-promotions__call-to-action {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

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

.page-promotions__text-block a:hover {
  text-decoration: underline;
}

.page-promotions__featured-promotions {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-promotions__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions__card-description a:hover {
  text-decoration: underline;
}

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

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.page-promotions__steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-promotions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-promotions__benefit-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease;
}

.page-promotions__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions__card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #57E38D);
}

.page-promotions__card-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions__card-text a:hover {
  text-decoration: underline;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__faq-item summary {
  list-style: none;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Lighter hover for Border color */
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__faq-answer p {
  margin-top: 15px;
}

.page-promotions__cta-text {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-promotions__cta-text a:hover {
  text-decoration: underline;
}

.page-promotions__cta-button--final {
  padding: 20px 45px;
  font-size: 1.4rem;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-promotions__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .page-promotions__benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .page-promotions__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__introduction-section,
  .page-promotions__featured-promotions,
  .page-promotions__how-to-claim-section,
  .page-promotions__benefits-section,
  .page-promotions__faq-section,
  .page-promotions__call-to-action {
    padding: 40px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__cta-button,
  .page-promotions__card-button,
  .page-promotions__cta-button--large,
  .page-promotions__cta-button--final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions__promotion-card,
  .page-promotions__step-item,
  .page-promotions__benefit-card {
    padding: 20px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__hero-image-wrapper,
  .page-promotions__promotion-card,
  .page-promotions__step-item,
  .page-promotions__benefit-card,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-promotions__container {
    padding: 0 10px;
  }

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

  .page-promotions__hero-description,
  .page-promotions__text-block,
  .page-promotions__card-description,
  .page-promotions__step-description,
  .page-promotions__card-text,
  .page-promotions__cta-text {
    font-size: 0.95rem;
  }
}