.page-promotions {
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Body background color */
  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-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #F2C14E; /* Gold color for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-bottom: 60px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.page-promotions__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background: #11271B; /* Card BG for content block */
  border-radius: 12px;
  margin-top: -60px; /* Overlap with image for visual interest, without covering content */
  position: relative;
  z-index: 2;
  border: 1px solid #2E7A4E;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.page-promotions__main-title {
  font-size: clamp(32px, 4vw, 56px);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.03em;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-description {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-width: 180px;
  text-align: center;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-promotions__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold text */
  border: 2px solid #F2C14E;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-promotions__btn-secondary:hover {
  background: #F2C14E;
  color: #11271B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-promotions__overview-section,
.page-promotions__guide-section,
.page-promotions__cta-bottom-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-promotions__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

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

.page-promotions__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

.page-promotions__card-title {
  font-size: 24px;
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__list {
  list-style: disc;
  margin-left: 20px;
  font-size: 16px;
  color: #A7D9B8;
}

.page-promotions__list li {
  margin-bottom: 10px;
}

.page-promotions__list-numbered {
  list-style: decimal;
  margin-left: 20px;
  font-size: 16px;
  color: #A7D9B8;
}

.page-promotions__list-numbered li {
  margin-bottom: 10px;
}

.page-promotions__content-area {
  padding: 80px 0;
  background-color: #08160F;
}

.page-promotions__promotion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  gap: 30px;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__promotion-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px;
}

.page-promotions__promotion-content {
  text-align: center;
  max-width: 800px;
}

.page-promotions__promotion-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__promotion-description {
  font-size: 17px;
  color: #A7D9B8;
  margin-bottom: 25px;
}

.page-promotions__promotion-conditions {
  list-style: circle;
  margin-left: 20px;
  text-align: left;
  font-size: 15px;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-promotions__text-block {
  font-size: 17px;
  color: #A7D9B8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

.page-promotions__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  list-style: none;
  outline: none;
}

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

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

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 16px;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A;
}

.page-promotions__cta-bottom-section .page-promotions__section-title {
  color: #F2FFF6;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
  .page-promotions__hero-description {
    font-size: clamp(15px, 2vw, 18px);
  }
  .page-promotions__promotion-item {
    padding: 30px;
  }
  .page-promotions__promotion-title {
    font-size: clamp(22px, 3.5vw, 32px);
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-content {
    margin-top: -30px;
    padding: 25px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(26px, 6vw, 36px);
    max-width: 100%;
  }
  .page-promotions__hero-description {
    font-size: clamp(14px, 3vw, 16px);
    max-width: 95%;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    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: 16px;
  }
  .page-promotions__overview-section,
  .page-promotions__guide-section,
  .page-promotions__cta-bottom-section,
  .page-promotions__content-area,
  .page-promotions__faq-section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 30px;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__list,
  .page-promotions__list-numbered {
    font-size: 15px;
  }
  .page-promotions__promotion-item {
    flex-direction: column;
    padding: 25px;
    margin-bottom: 40px;
    gap: 20px;
  }
  .page-promotions__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__promotion-title {
    font-size: clamp(20px, 4.5vw, 28px);
  }
  .page-promotions__promotion-description,
  .page-promotions__promotion-conditions,
  .page-promotions__text-block {
    font-size: 15px;
  }
  .page-promotions__faq-list {
    margin-top: 30px;
  }
  .page-promotions__faq-item summary {
    padding: 18px 20px;
    font-size: 16px;
  }
  .page-promotions__faq-answer {
    padding: 12px 20px 20px 20px;
    font-size: 15px;
  }

  /* Mobile specific container padding for overflow prevention */
  .page-promotions__hero-section .page-promotions__hero-content,
  .page-promotions__overview-section .page-promotions__container,
  .page-promotions__details-section .page-promotions__container,
  .page-promotions__guide-section .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__cta-bottom-section .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  /* Ensure all img tags are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Ensure video sections have correct top padding for mobile */
  .page-promotions__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -20px;
    padding: 20px 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .page-promotions__hero-description {
    font-size: clamp(13px, 3.5vw, 15px);
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    min-width: unset;
  }
  .page-promotions__section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 18px;
  }
  .page-promotions__promotion-item {
    padding: 20px;
  }
  .page-promotions__promotion-title {
    font-size: clamp(18px, 5vw, 24px);
  }
  .page-promotions__faq-item summary {
    padding: 15px 18px;
    font-size: 15px;
  }
  .page-promotions__faq-answer {
    padding: 10px 18px 18px 18px;
  }
}