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

.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; /* Primary color */
  margin-bottom: 40px;
  font-weight: bold;
  text-align: center;
}

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

.page-promotions__highlight {
  color: #E53935;
  font-weight: bold;
}

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

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

/* HERO Section */
.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; /* Small top padding, body handles header offset */
  background-color: #F5F7FA; /* Match page background */
}

.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%; /* Ensure full width within max-width */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px; /* Limit text width for readability */
}

.page-promotions__main-title {
  font-weight: bold;
  color: #E53935; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
}

.page-promotions__hero-description {
  font-size: 19px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-promotions__cta-button--dark {
  background: #E53935;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--dark:hover {
  background: #FF5A4F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Promo Types Grid */
.page-promotions__promo-types {
  background-color: #F5F7FA;
}

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

.page-promotions__card {
  background: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.page-promotions__card-description {
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  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(-2px);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

/* Benefits Section */
.page-promotions__benefits {
  background-color: #FFFFFF;
}

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

.page-promotions__benefit-item {
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background: #F5F7FA;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-promotions__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure responsive */
}

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

.page-promotions__benefit-item p {
  font-size: 15px;
  color: #333333;
  text-align: center;
}

/* Terms & Conditions / Optimize Promos */
.page-promotions__terms-conditions, .page-promotions__optimize-promos {
  background-color: #F5F7FA;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions__list--numbered {
  list-style-type: decimal;
  padding-left: 20px;
}

.page-promotions__list--checkmarks .page-promotions__list-item {
  position: relative;
  padding-left: 30px;
}

.page-promotions__list--checkmarks .page-promotions__list-item::before {
  content: '✔'; /* Checkmark symbol */
  color: #E53935; /* Primary color */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions__list-item {
  margin-bottom: 15px;
  font-size: 17px;
  color: #333333;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #FFFFFF;
  color: #E53935; /* Primary color */
  border: 2px solid #E0E0E0; /* Border color */
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
  background: #E53935;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.page-promotions__btn-secondary--center {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #FFFFFF;
}

.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 */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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: #f9f9f9;
}

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

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #E53935; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #F5F7FA; /* Background */
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #333333;
  text-align: justify;
}

details.page-promotions__faq-item .page-promotions__faq-answer p {
  margin: 0;
}

/* Why Choose Us Section */
.page-promotions__why-choose-us {
  background-color: #E53935; /* Primary color */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-promotions__why-choose-us .page-promotions__section-title {
  color: #FFFFFF;
  margin-bottom: 30px;
}

.page-promotions__why-choose-us .page-promotions__text-block {
  color: #F0F0F0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-promotions__why-choose-us .page-promotions__list-item {
  color: #F0F0F0;
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.page-promotions__why-choose-us .page-promotions__list--checkmarks .page-promotions__list-item::before {
  color: #FF5A4F; /* Auxiliary color for checkmarks */
}

.page-promotions__why-choose-us .page-promotions__highlight {
  color: #FF5A4F;
}

.page-promotions__why-choose-us a {
  color: #FF5A4F;
}

.page-promotions__why-choose-us a:hover {
  text-decoration: underline;
}

.page-promotions__button-wrapper {
  margin-top: 40px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__text-block, .page-promotions__list-item {
    font-size: 16px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__card-description {
    font-size: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 17px;
  }
}