.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--color-deep-navy); /* Body background is dark, so text is light */
}

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

/* 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 */
  overflow: hidden; /* Ensure no overflow from images */
  background-color: var(--color-deep-navy); /* Use deep navy for consistency */
}

.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: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Using clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--centered {
    margin-left: auto;
    margin-right: auto;
    display: block; /* To center with text-align on parent */
    width: fit-content;
}

/* Sections */
.page-promotions__overview-section,
.page-promotions__giftcode-section,
.page-promotions__types-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__blog-section {
  padding: 60px 0;
}

.page-promotions__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
}

.page-promotions__light-bg {
    background-color: var(--color-deep-navy); /* Use Deep Navy as a slightly lighter background for contrast */
    color: #F3F8FF;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #F2C14E; /* Gold */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__text {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #AFC4E8; /* Text Secondary */
}

/* Feature Cards */
.page-promotions__feature-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-promotions__card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

.page-promotions__card-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

/* Giftcode Steps */
.page-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__step-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

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

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

/* Promotion Grid */
.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__promo-card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-card img {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__promo-card .page-promotions__promo-title {
  font-size: 22px;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin: 20px 20px 10px;
}

.page-promotions__promo-card .page-promotions__promo-description {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__promo-card .page-promotions__promo-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

/* Terms List */
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto 0;
  text-align: left;
}

.page-promotions__terms-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #244D84; /* Border */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
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: rgba(36, 77, 132, 0.5); /* Lighter border color for hover */
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}
.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #08162B; /* Deep Navy for answer background */
  border-radius: 0 0 5px 5px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 16px;
}

/* Blog Section */
.page-promotions__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__blog-card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__blog-card img {
  width: 100%;
  height: 220px; /* Fixed height for blog images */
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

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

.page-promotions__blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__blog-title a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__blog-title a:hover {
  color: #4FA8FF; /* Glow */
}

.page-promotions__blog-date {
  font-size: 14px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-promotions__blog-excerpt {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__blog-readmore {
  display: inline-block;
  padding: 8px 15px;
  background: #1D5FD1; /* Auxiliary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-promotions__blog-readmore:hover {
  background: #2B73F6; /* Lighter blue */
}

/* Common CTA Wrapper */
.page-promotions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(26px, 5vw, 40px);
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__container {
    padding: 0 15px;
  }

  /* Hero */
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Mobile small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  .page-promotions__main-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 15px;
  }
  .page-promotions__description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    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--centered {
      width: 100% !important; /* Force full width for centered button on mobile */
  }

  /* Sections */
  .page-promotions__overview-section,
  .page-promotions__giftcode-section,
  .page-promotions__types-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__blog-section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions__text {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* Cards and Steps */
  .page-promotions__feature-cards,
  .page-promotions__steps,
  .page-promotions__promotion-grid,
  .page-promotions__blog-grid {
    gap: 20px;
  }
  .page-promotions__card,
  .page-promotions__step-item,
  .page-promotions__promo-card,
  .page-promotions__blog-card {
    padding: 20px;
    min-width: unset;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__card img,
  .page-promotions__step-item img,
  .page-promotions__promo-card img,
  .page-promotions__blog-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
  }
  .page-promotions__promo-card img {
     /* Adjust fixed height for mobile */
  }
  .page-promotions__blog-card img {
     /* Adjust fixed height for mobile */
  }

  .page-promotions__card-title,
  .page-promotions__step-title,
  .page-promotions__promo-title {
    font-size: 20px;
  }
  .page-promotions__card-text,
  .page-promotions__step-description,
  .page-promotions__promo-description {
    font-size: 15px;
  }
  .page-promotions__promo-card .page-promotions__promo-button {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
  }

  /* Terms List */
  .page-promotions__terms-list {
    margin-top: 30px;
  }
  .page-promotions__terms-item {
    padding: 12px 15px;
    font-size: 15px;
  }

  /* FAQ */
  .page-promotions__faq-list {
    margin-top: 30px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
  .page-promotions__faq-qtext { font-size: 15px; }
  .page-promotions__faq-toggle { font-size: 20px; width: 24px; }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }

  /* Blog */
  .page-promotions__blog-content {
    padding: 15px;
  }
  .page-promotions__blog-title {
    font-size: 18px;
  }
  .page-promotions__blog-date,
  .page-promotions__blog-excerpt {
    font-size: 14px;
  }
  .page-promotions__blog-readmore {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* Image responsive overrides for mobile */
@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__giftcode-section,
  .page-promotions__types-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__blog-section,
  .page-promotions__promo-card,
  .page-promotions__blog-card,
  .page-promotions__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-left: 0 !important; /* Hero section padding is handled by its own rules, container will add its own */
    padding-right: 0 !important;
  }
  .page-promotions__hero-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    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__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
  }
}