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

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

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

.page-promotions__section-title {
  font-size: 36px;
  color: #E53935; /* Main brand color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-title--light {
  color: #ffffff;
}

.page-promotions__subtitle {
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
}

.page-promotions__hero-banner {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient for hero banner background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  /* Fixed header spacing: body handles padding-top, use small top padding */
  padding-top: 10px;
}

.page-promotions__main-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 22px;
}

.page-promotions__grid-half {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-promotions__grid-half .page-promotions__text-content,
.page-promotions__grid-half .page-promotions__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promotions__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
  object-fit: cover;
}

.page-promotions__text-content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333333;
}

.page-promotions__text-content--light p,
.page-promotions__text-content--light li {
  color: #f0f0f0;
}

.page-promotions__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-promotions__text-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  color: #333333;
}

.page-promotions__text-content ul li::before {
  content: '✓';
  color: #FF5A4F;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__dark-section {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  color: #ffffff;
}

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

.page-promotions__promo-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0; /* Border color */
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-promotions__card-content {
  padding: 25px;
}

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

.page-promotions__card-description {
  font-size: 15px;
  color: #333333;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.page-promotions__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
  transition: transform 0.3s ease;
}

.page-promotions__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E53935; /* Main brand color */
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promotions__step-item p {
  font-size: 15px;
  color: #333333;
}

.page-promotions__step-item a {
  color: #E53935;
  text-decoration: underline;
}

.page-promotions__text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  color: #333333;
}

.page-promotions__text-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions__text-block ul li {
  margin-bottom: 10px;
}

.page-promotions__text-block p {
  margin-bottom: 15px;
}

.page-promotions__text-block a {
  color: #E53935;
  text-decoration: underline;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #E0E0E0; /* Border color */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-promotions__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  color: #E53935; /* Main brand color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: #fdfdfd;
  border-radius: 0 0 8px 8px;
  font-size: 15px;
  color: #555555;
}

.page-promotions__text-center {
  text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-promotions__section-title {
    font-size: 30px;
  }

  .page-promotions__hero-description {
    font-size: 18px;
  }

  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .page-promotions__cta-button--large {
    padding: 15px 40px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .page-promotions__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions__hero-banner {
    padding: 60px 0;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

  .page-promotions__main-title {
    font-size: 32px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
    padding: 0 15px;
  }

  .page-promotions__grid-half {
    flex-direction: column;
    gap: 30px;
  }

  .page-promotions__grid-half .page-promotions__text-content,
  .page-promotions__grid-half .page-promotions__image-wrapper {
    min-width: unset;
  }

  .page-promotions__image-wrapper img {
    border-radius: 8px;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card {
    margin: 0 10px;
  }

  .page-promotions__card-image img {
    height: 200px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-description {
    font-size: 14px;
  }

  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__step-item {
    margin: 0 10px;
    padding: 25px 15px;
  }

  .page-promotions__text-block {
    padding: 0 15px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-qtext {
    font-size: 16px;
  }

  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-banner .page-promotions__container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Mobile button responsiveness */
  .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__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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}