.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  direction: ltr;
}

.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);
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

/* 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 padding-top handles header offset */
  background: linear-gradient(180deg, rgba(198, 31, 31, 0.2), rgba(229, 48, 48, 0.2)), #140C0C;
}

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

.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;
  border: 2px solid #6A1E1E;
}

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

.page-promotions__hero-content h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  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);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 80px 0;
  background-color: #140C0C;
}

/* Promotions Grid */
.page-promotions__promotions-grid {
  padding: 80px 0;
  background-color: #140C0C;
}

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

.page-promotions__promotion-card {
  background-color: #2A1212; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #6A1E1E; /* Border */
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promotion-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #6A1E1E;
}

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

.page-promotions__card-title {
  font-size: 24px;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  align-self: flex-start;
}

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

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

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__claim-steps li {
  background-color: #2A1212; /* Card BG */
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 17px;
  color: #FFF1E8;
  border-left: 5px solid #F3C54D; /* Gold */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__claim-steps li strong {
  color: #F3C54D;
}

.page-promotions__claim-steps li a {
  color: #FFB04A;
  text-decoration: none;
}

.page-promotions__claim-steps li a:hover {
  text-decoration: underline;
}

.page-promotions__note {
  font-style: italic;
  text-align: center;
  color: #E53030; /* Secondary color */
  font-size: 16px;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
  padding: 80px 0;
  background-color: #140C0C;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF1E8;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-promotions__terms-list li strong {
  color: #F3C54D;
}

.page-promotions__link {
  display: block;
  text-align: center;
  color: #FFB04A;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  margin-top: 30px;
}

.page-promotions__link:hover {
  text-decoration: underline;
}

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

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  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: #3B1C1C;
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF1E8;
}
.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: #140C0C; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF1E8;
  font-size: 16px;
}

/* Responsive Design */
@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: 4px;
  }
  .page-promotions__hero-content h1 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .page-promotions__hero-content p {
    font-size: 15px;
  }
  .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__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-promotions__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions__intro-section, .page-promotions__promotions-grid, .page-promotions__how-to-claim, .page-promotions__terms-conditions, .page-promotions__faq-section {
    padding: 40px 0;
  }

  .page-promotions__grid-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-card {
    margin: 0 10px;
  }
  .page-promotions__promotion-card img {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__card-text {
    font-size: 14px;
  }
  .page-promotions__card-button {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__claim-steps li, .page-promotions__terms-list li {
    font-size: 15px;
    padding: 15px 20px;
    margin: 0 10px 15px 10px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px 20px; }
  .page-promotions__faq-qtext { font-size: 16px; }
  .page-promotions__faq-toggle { font-size: 24px; width: 28px; }
  details.page-promotions__faq-item .page-promotions__faq-answer { padding: 0 20px 15px; }

  /* General image and button responsiveness */
  .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__grid-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .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;
  }
}