.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  max-width: 1390px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

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

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

.page-promotions__hero-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 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-promotions__list-section {
  max-width: 1390px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #F4F7FB;
}

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  color: #1F2D3D;
  margin-bottom: 50px;
}

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

.page-promotions__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;
  border: 1px solid #D6E2FF;
}

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

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

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

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.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.95em;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(47, 107, 255, 0.3);
}

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

.page-promotions__cta-section {
  background-color: #F4F7FB;
  padding: 80px 20px;
  text-align: center;
}

.page-promotions__cta-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.1);
  border: 1px solid #D6E2FF;
}

.page-promotions__cta-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-promotions__cta-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 40px;
}

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

.page-promotions__cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(47, 107, 255, 0.7);
}

@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-width: 100%;
    border-radius: 0;
  }
  .page-promotions__hero-image {
    width: 100%;
    height: auto;
  }
  .page-promotions__main-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-promotions__hero-content {
    padding: 0 15px;
  }
  .page-promotions__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-promotions__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__list-section {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-promotions__cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__card-description {
    font-size: 0.95em;
  }
  .page-promotions__cta-section {
    padding: 60px 15px;
  }
  .page-promotions__cta-content {
    padding: 30px;
  }
  .page-promotions__cta-title {
    font-size: clamp(1.5em, 5vw, 1.7em);
    margin-bottom: 20px;
  }
  .page-promotions__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}