:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color-page: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-promotions {
  color: var(--text-main); /* Assuming body background is dark, use light text */
  background-color: var(--background-color-page);
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding for the first section */
  background-color: var(--background-color-page);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--background-color-page);
  border-radius: 8px;
  margin-top: -80px; /* Pull content slightly over image for visual appeal, but not overlapping text */
  position: relative;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__cta-button--center {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
}

.page-promotions__section {
  padding: 60px 0;
  background-color: var(--background-color-page);
}

.page-promotions__section--dark {
  background-color: var(--deep-green-color);
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__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);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.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.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

.page-promotions__numbered-list, .page-promotions__bullet-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions__numbered-list li, .page-promotions__bullet-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-promotions__numbered-list li:last-child, .page-promotions__bullet-list li:last-child {
  margin-bottom: 0;
}

.page-promotions__numbered-list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: var(--primary-color);
  color: var(--text-main);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-promotions__numbered-list li .page-promotions__list-title {
  margin-left: 50px; /* Adjust for counter */
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--text-main);
}

.page-promotions__bullet-list li .page-promotions__list-title {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--text-main);
}

.page-promotions__numbered-list li .page-promotions__list-description, .page-promotions__bullet-list li .page-promotions__list-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-left: 50px; /* Adjust for counter */
}

.page-promotions__bullet-list li .page-promotions__list-description {
  margin-left: 0;
}

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

.page-promotions__advantage-list li {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__advantage-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions__advantage-list li .page-promotions__list-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions__advantage-list li .page-promotions__list-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green-color);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: var(--primary-color);
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg); /* Change '+' to 'x' or '-' */
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }

  .page-promotions__grid {
    gap: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__advantage-list {
    gap: 20px;
  }

  .page-promotions__faq-question {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }

  .page-promotions__hero-image-wrapper,
  .page-promotions__container,
  .page-promotions__grid,
  .page-promotions__card,
  .page-promotions__numbered-list,
  .page-promotions__bullet-list,
  .page-promotions__advantage-list,
  .page-promotions__advantage-list li,
  .page-promotions__faq-list,
  .page-promotions__faq-item,
  .page-promotions__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-image,
  .page-promotions__card-image,
  .page-promotions__advantage-icon,
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset;
    min-height: unset;
  }

  .page-promotions__cta-button,
  .page-promotions__card-button,
  .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__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions__description {
    font-size: 1rem;
  }

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

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions__numbered-list li::before {
    position: static;
    margin-bottom: 10px;
    align-self: flex-start;
  }

  .page-promotions__numbered-list li .page-promotions__list-title {
    margin-left: 0;
    font-size: 1.15rem;
  }

  .page-promotions__numbered-list li .page-promotions__list-description {
    margin-left: 0;
  }

  .page-promotions__advantage-icon {
    width: 60px;
    height: 60px;
  }

  .page-promotions__advantage-list li .page-promotions__list-title {
    font-size: 1.2rem;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
  }

  .page-promotions__cta-button--center {
    margin: 30px auto 0 auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__card-title {
    font-size: 1.1rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__advantage-list li .page-promotions__list-title {
    font-size: 1.1rem;
  }
}