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

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

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  color: var(--primary-color, #FF8C1A);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp as per H1 font size rule */
  color: #FFF3E6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  background-color: var(--bg-color, #0D0E12);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-buttons--centered {
  margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
  font-size: 1rem;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--primary-color, #FF8C1A);
  border: 2px solid var(--primary-color, #FF8C1A);
}

.page-promotions__btn-secondary:hover {
  background: var(--primary-color, #FF8C1A);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
}

.page-promotions__text-block {
  font-size: 1.05rem;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__highlight {
  color: var(--primary-color, #FF8C1A);
  font-weight: bold;
}

.page-promotions__introduction-section {
  background-color: var(--bg-color, #0D0E12);
}

.page-promotions__promotion-types {
  background-color: var(--card-bg-color, #17191F); /* Card BG */
}

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

.page-promotions__card {
  background-color: var(--card-bg-color, #17191F); /* Card BG */
  border: 1px solid var(--border-color, #A84F0C); /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 450px;
  color: var(--text-main-color, #FFF3E6); /* Text Main */
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim {
  background-color: var(--bg-color, #0D0E12);
}

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

.page-promotions__step-card {
  background-color: var(--card-bg-color, #17191F); /* Card BG */
  border: 1px solid var(--border-color, #A84F0C); /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color, #FFF3E6); /* Text Main */
}

.page-promotions__step-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: var(--text-main-color, #FFF3E6);
}

.page-promotions__step-description a {
  color: var(--auxiliary-color, #FFA53A);
  text-decoration: none;
}

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

.page-promotions__terms-conditions {
  background-color: var(--card-bg-color, #17191F); /* Card BG */
}

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

.page-promotions__list-item {
  background-color: var(--bg-color, #0D0E12); /* Background */
  border-left: 5px solid var(--primary-color, #FF8C1A);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--text-main-color, #FFF3E6); /* Text Main */
  font-size: 1rem;
}

.page-promotions__list-item strong {
  color: var(--auxiliary-color, #FFA53A);
}

.page-promotions__list-item a {
  color: var(--auxiliary-color, #FFA53A);
  text-decoration: none;
}

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

.page-promotions__why-choose-us {
  background-color: var(--bg-color, #0D0E12);
}

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

.page-promotions__feature-card {
  background-color: var(--card-bg-color, #17191F); /* Card BG */
  border: 1px solid var(--border-color, #A84F0C); /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color, #FFF3E6); /* Text Main */
}

.page-promotions__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__feature-title {
  font-size: 1.5rem;
  color: var(--primary-color, #FF8C1A);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-description {
  font-size: 1rem;
  color: var(--text-main-color, #FFF3E6);
}

.page-promotions__faq-section {
  background-color: var(--card-bg-color, #17191F); /* Card BG */
}

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

.page-promotions__faq-item {
  background-color: var(--bg-color, #0D0E12); /* Background */
  border: 1px solid var(--border-color, #A84F0C); /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color, #FFF3E6); /* Text Main */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--primary-color, #FF8C1A);
  cursor: pointer;
  background-color: var(--card-bg-color, #17191F);
  border-bottom: 1px solid var(--border-color, #A84F0C);
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--auxiliary-color, #FFA53A);
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-main-color, #FFF3E6);
  line-height: 1.6;
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Details tag specific styles */
.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid var(--border-color, #A84F0C);
}

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

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

.page-promotions__call-to-action {
  background-color: var(--bg-color, #0D0E12);
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: 2rem;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 60vh;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__card,
  .page-promotions__step-card,
  .page-promotions__feature-card {
    padding: 20px;
    min-height: auto;
  }
  .page-promotions__card-image,
  .page-promotions__step-image,
  .page-promotions__feature-image {
    height: 150px;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-promotions__card-title,
  .page-promotions__step-title,
  .page-promotions__feature-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-description,
  .page-promotions__step-description,
  .page-promotions__feature-description {
    font-size: 0.9rem;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content,
  .page-promotions__cta-buttons,
  .page-promotions__cards-grid,
  .page-promotions__steps-grid,
  .page-promotions__features-grid,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 15px 20px;
  }
  .page-promotions__list-item {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
}