.page-promotions {
  color: #333333;
  background: #F5F7FA;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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; /* body handles header offset */
  background-color: #E53935;
  color: #ffffff;
  overflow: hidden;
}

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

.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;
}

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

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-promotions__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__introduction-section {
  background-color: #F5F7FA;
  color: #333333;
}

.page-promotions__types-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-promotions__guide-section {
  background-color: #F5F7FA;
  color: #333333;
}

.page-promotions__terms-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-promotions__why-choose-section {
  background-color: #F5F7FA;
  color: #333333;
}

.page-promotions__faq-section {
  background-color: #F5F7FA;
  color: #333333;
}

.page-promotions__latest-promos-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-promotions__dark-section {
  color: #ffffff;
  background-color: #E53935;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.3;
  color: inherit;
}

.page-promotions__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #ffffff;
  color: #E53935;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  border: 2px solid #E53935;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
  transform: translateY(-1px);
}

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

.page-promotions__card {
  background: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #E0E0E0;
  min-height: 450px;
}

.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: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #E53935;
}

.page-promotions__card-description {
  font-size: 16px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__ordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__list-item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__list-title {
  font-size: 20px;
  font-weight: bold;
  color: #E53935;
  margin-bottom: 10px;
}

.page-promotions__list-item p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 10px;
}

.page-promotions__btn-inline {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-inline:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
}

.page-promotions__unordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__benefit-item {
  background: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  border: 1px solid #E0E0E0;
}

.page-promotions__benefit-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  max-width: 100%;
}

.page-promotions__benefit-title {
  font-size: 20px;
  font-weight: bold;
  color: #E53935;
  margin-bottom: 10px;
}

.page-promotions__benefit-item p {
  font-size: 16px;
  color: #333333;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  text-align: left;
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  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: #f5f5f5;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  color: #555555;
}

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

.page-promotions__promo-card {
  background: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  border: 1px solid #E0E0E0;
}

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

.page-promotions__promo-content {
  padding: 20px;
}

.page-promotions__promo-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__promo-title a {
  color: #E53935;
  text-decoration: none;
}

.page-promotions__promo-title a:hover {
  text-decoration: underline;
}

.page-promotions__promo-date {
  font-size: 14px;
  color: #777777;
  margin-bottom: 10px;
}

.page-promotions__promo-description {
  font-size: 16px;
  color: #555555;
  margin-bottom: 15px;
}

.page-promotions__read-more {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__read-more:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
}

.page-promotions__view-all-button-container {
  margin-top: 40px;
  text-align: center;
}

.page-promotions__view-all-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #E53935;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #E53935;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__view-all-button:hover {
  background: #E53935;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(26px, 3.5vw, 42px);
  }
  .page-promotions__hero-description {
    font-size: clamp(15px, 1.8vw, 18px);
  }
  .page-promotions__section-title {
    font-size: clamp(22px, 3vw, 34px);
  }
  .page-promotions__text-block, .page-promotions__card-description, .page-promotions__list-item p, .page-promotions__benefit-item p, .page-promotions__faq-answer p, .page-promotions__promo-description {
    font-size: 16px;
  }
}

@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__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 10px;
  }
  .page-promotions__hero-description {
    font-size: clamp(14px, 3.5vw, 17px);
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: clamp(20px, 6vw, 30px);
    margin-bottom: 25px;
  }
  .page-promotions__text-block {
    font-size: 15px;
    text-align: left;
  }
  .page-promotions__card-grid, .page-promotions__benefits-grid, .page-promotions__promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__card, .page-promotions__benefit-item, .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__card-image, .page-promotions__promo-image {
    height: 180px;
    min-width: 200px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__list-item {
    padding: 20px;
  }
  .page-promotions__list-title {
    font-size: 18px;
  }
  .page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }
  .page-promotions__promo-title {
    font-size: 18px;
  }
  .page-promotions__promo-description {
    font-size: 15px;
  }
  .page-promotions__read-more {
    padding: 10px 20px;
    font-size: 13px;
  }
  .page-promotions__view-all-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"],
  .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;
  }
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column; 
  }
}