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

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

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  max-width: 1200px; /* Example display width */
}

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

.page-promotions__main-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem); /* Responsive H1 font size */
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,176,77,0.5); /* Glow */
}

.page-promotions__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
  opacity: 0.9;
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background */
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #FF8C1A; /* Primary color */
  text-shadow: 0 0 8px rgba(255,140,26,0.4);
}

.page-promotions__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF3E6;
  opacity: 0.8;
}

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

.page-promotions__card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid #A84F0C; /* Border */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255,176,77,0.4); /* Glow */
}

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

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFB04D; /* Glow */
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #FFF3E6;
  margin-bottom: 15px;
  opacity: 0.85;
  flex-grow: 1;
}

.page-promotions__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__card-list li {
  color: #FFF3E6;
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__card-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFA53A; /* Auxiliary color */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255,165,58,0.4);
}

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

.page-promotions__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Primary color */
  border: 2px solid #FF8C1A;
}

.page-promotions__btn-secondary:hover {
  background-color: #FF8C1A;
  color: #ffffff;
  border-color: #FF8C1A;
}

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

.page-promotions__step-item {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  border: 1px solid #A84F0C; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,176,77,0.3); /* Glow */
}

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

.page-promotions__step-text {
  font-size: 1rem;
  color: #FFF3E6;
  opacity: 0.85;
}

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

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

.page-promotions__benefits-list li {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  border: 1px solid #A84F0C; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__benefits-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255,176,77,0.3); /* Glow */
}

.page-promotions__benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFB04D; /* Glow */
}

.page-promotions__benefit-text {
  font-size: 1rem;
  color: #FFF3E6;
  opacity: 0.85;
}

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

.page-promotions__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  cursor: pointer;
  background-color: #1F2228;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: #2a2e34;
}

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

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A; /* Auxiliary color */
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #FFF3E6;
  opacity: 0.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 15px;
}

.page-promotions__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }
  .page-promotions__section-title {
    font-size: 2.2rem;
  }
  .page-promotions__hero-image {
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding-bottom: 30px;
  }
  .page-promotions__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__hero-content {
    padding: 0 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__intro-text {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .page-promotions__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-promotions__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card {
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }
  .page-promotions__card-content {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .page-promotions__card-text {
    font-size: 0.95rem;
  }
  .page-promotions__card-list li {
    font-size: 0.9rem;
  }
  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__step-item {
    padding: 25px;
  }
  .page-promotions__step-title {
    font-size: 1.4rem;
  }
  .page-promotions__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__benefits-list li {
    padding: 25px;
  }
  .page-promotions__benefit-title {
    font-size: 1.3rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px;
  }
  .page-promotions__conclusion-section {
    padding-bottom: 60px;
  }
}