/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #121212;
  line-height: 1.6;
}

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

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

.page-promotions__section--dark {
  background-color: #1A237E;
  color: #ffffff;
}

.page-promotions__section--featured {
  background-color: #0f172a;
}

.page-promotions__hero {
  background: linear-gradient(135deg, #1A237E, #2c3e50);
  padding: 80px 0 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-promotions__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: auto;
  opacity: 0.3;
  z-index: 0;
}

.page-promotions__hero .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFC107;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  border-radius: 2px;
}

.page-promotions__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #c0c0c0;
}

.page-promotions__keyword {
  color: #FFC107;
  font-weight: bold;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__btn--primary {
  background-color: #FFC107;
  color: #1A237E;
}

.page-promotions__btn--primary:hover {
  background-color: #ffda6a;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #3f51b5;
  color: #ffffff;
}

.page-promotions__btn--secondary:hover {
  background-color: #5c6bc0;
  transform: translateY(-2px);
}

.page-promotions__btn--outline {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
  padding: 13px 28px;
}

.page-promotions__btn--outline:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-2px);
}

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

.page-promotions__promo-card {
  background-color: #212121;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__promo-title {
  font-size: 1.6em;
  color: #FFC107;
  margin-bottom: 15px;
}

.page-promotions__promo-description {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-promotions__steps-list li {
  background-color: #212121;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions__steps-list h4 {
  font-size: 1.4em;
  color: #FFC107;
  margin-bottom: 10px;
}

.page-promotions__steps-list p {
  font-size: 1em;
  color: #c0c0c0;
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions__link--inline {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__link--inline:hover {
  text-decoration: underline;
}

.page-promotions__promo-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__list-item {
  background-color: #212121;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.page-promotions__list-item-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__list-item-content {
  text-align: center;
  flex-grow: 1;
}

.page-promotions__list-item-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-promotions__list-item-title a {
  color: #FFC107;
  text-decoration: none;
}

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

.page-promotions__list-item-description {
  font-size: 1.1em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-promotions__list-item-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__image--full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__image--center {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__tips-list li {
  background-color: #212121;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #c0c0c0;
  font-size: 1.05em;
}

.page-promotions__tips-list li strong {
  color: #FFC107;
  font-size: 1.1em;
}

.page-promotions__cta-bottom {
  background: linear-gradient(45deg, #1A237E, #3f51b5);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__cta-bottom .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  color: #FFC107;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-promotions__cta-image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 35%;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-image,
  .page-promotions__cta-image {
    display: none;
  }
  .page-promotions__promo-list {
    flex-direction: column;
  }
  .page-promotions__list-item {
    flex-direction: column;
  }
  .page-promotions__list-item-img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0 30px;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text {
    font-size: 0.95em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__list-item-title {
    font-size: 1.5em;
  }
  .page-promotions__list-item-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__list-item-title {
    font-size: 1.3em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}