.page-promotions {
  padding-top: 10px;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-promotions__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__latest-promotions-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-promotions__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__card-title a {
  color: #2F6BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #6FA3FF;
}

.page-promotions__card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(47, 107, 255, 0.2);
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3);
}

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

.page-promotions__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__step-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.page-promotions__faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.page-promotions__faq-question {
  font-size: 1.15em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  padding-left: 10px;
  border-left: 3px solid #2F6BFF;
}

.page-promotions__cta-bottom-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  padding: 50px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-promotions__cta-bottom-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-promotions__cta-bottom-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFFFFF;
  opacity: 0.9;
}

.page-promotions__cta-bottom-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  font-size: 1.15em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__cta-bottom-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 15px;
    margin-bottom: 30px;
  }
  .page-promotions__main-title {
    font-size: 2em;
  }
  .page-promotions__description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__latest-promotions-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section {
    padding: 15px;
    margin-bottom: 30px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-promotions__promotions-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image,
  .page-promotions__step-image {
    width: 100%;
    height: auto;
    max-width: 100% !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__cta-bottom-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-bottom-description {
    font-size: 1em;
  }
  .page-promotions__cta-bottom-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-bottom-title {
    font-size: 1.5em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.95em;
  }
}