.page-promotions {
  color: #FFF3E6; /* Text Main */
  background-color: var(--background-color, #0D0E12); /* Default dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-promotions__dark-bg {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
}

.page-promotions__card-bg {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Max height for desktop hero */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures image covers the area */
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(13, 14, 18, 0.7); /* Slightly transparent overlay for readability */
  border-radius: 10px;
  margin-top: -120px; /* Pull content up over image a bit, but not on top of it */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFB04D; /* Glow */
}

.page-promotions__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

.page-promotions__cta-buttons--center {
  justify-content: center;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff; /* White text for contrast */
  border-color: #FFA53A;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #FFA53A; /* Auxiliary color */
  border-color: #FFA53A;
}

.page-promotions__btn-secondary:hover {
  background: #FFA53A;
  color: #0D0E12; /* Dark text for contrast */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.2);
}

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow */
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFA53A, transparent);
  border-radius: 2px;
}

.page-promotions__content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions__text-block p {
  margin-bottom: 20px;
  color: #FFF3E6;
}

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

.page-promotions__benefit-item {
  background-color: #0D0E12;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
  color: #FFF3E6;
}

.page-promotions__benefit-item strong {
  color: #FFA53A;
  font-size: 1.1em;
}

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

.page-promotions__promotion-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__promotion-title {
  font-size: 1.5rem;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__promotion-item p {
  font-size: 1rem;
  color: #FFF3E6;
  line-height: 1.5;
}

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

.page-promotions__step-item {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image width */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__step-item p {
  font-size: 1rem;
  color: #FFF3E6;
}

.page-promotions__step-item a {
  color: #FFB04D;
  text-decoration: none;
}

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

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

.page-promotions__promo-card {
  display: flex;
  flex-direction: column;
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #FFF3E6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-promotions__promo-title {
  font-size: 1.3rem;
  color: #FFA53A;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__promo-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-promotions__promo-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}

.page-promotions__promo-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions__terms-item {
  background-color: #0D0E12;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #A84F0C; /* Border */
  color: #FFF3E6;
}

.page-promotions__terms-item strong {
  color: #FFA53A;
  font-size: 1.1em;
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  background: #17191F;
}

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;
  color: #FFF3E6;
}

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(255, 165, 58, 0.1);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFA53A;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04D;
  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: #0D0E12;
  border-radius: 0 0 10px 10px;
  color: #FFF3E6;
}

.page-promotions__cta-bottom-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* General image responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__description {
    font-size: 1rem;
  }
  .page-promotions__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__promotions-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px; /* Specific top padding for mobile */
    padding-bottom: 40px;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 400px; /* Adjust max height for mobile hero */
  }
  .page-promotions__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    position: static;
    transform: none;
    height: auto;
  }
  .page-promotions__hero-content {
    margin-top: 20px; /* Adjust margin for mobile to be below image */
    padding: 20px 15px;
    border-radius: 5px;
    box-shadow: none;
    background-color: rgba(13, 14, 18, 0.9); /* More opaque on mobile */
    width: calc(100% - 30px);
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .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: 12px 20px;
    font-size: 0.95rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-promotions__section-title::after {
    width: 60px;
    height: 3px;
  }
  .page-promotions__content-area {
    padding: 0 15px;
  }
  .page-promotions__benefit-list,
  .page-promotions__promotion-grid,
  .page-promotions__steps-grid,
  .page-promotions__promotions-cards-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__promo-card {
    margin: 0 15px; /* Add horizontal margin to cards */
  }
  .page-promotions__step-item {
    padding: 20px;
    margin: 0 15px;
  }
  .page-promotions__terms-item {
    margin: 0 15px 15px 15px;
  }
  details.page-promotions__faq-item {
    margin: 0 15px 15px 15px;
    border-radius: 5px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question { 
    padding: 15px; 
  }
  .page-promotions__faq-qtext { 
    font-size: 1rem; 
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__container,
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__text-block,
  .page-promotions__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-bottom-section .page-promotions__description {
    padding: 0 15px;
  }
}