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

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

.page-promotions__hero {
  background: linear-gradient(135deg, #003366, #FFCC00);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.page-promotions__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 2;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.page-promotions__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

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

.page-promotions__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions__btn--secondary:hover {
  background-color: #002244;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #fff;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

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

.page-promotions__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  color: #666;
}

.page-promotions__offer-types .page-promotions__type-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-promotions__type-card--reverse {
  flex-direction: row-reverse;
}

.page-promotions__type-card-image {
  width: 40%;
  height: 350px;
  object-fit: cover;
}

.page-promotions__type-card-content {
  width: 60%;
  padding: 40px;
}

.page-promotions__type-card-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
}

.page-promotions__type-card-description {
  color: #555;
  margin-bottom: 20px;
}

.page-promotions__type-card ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #555;
}

.page-promotions__type-card ul li {
  margin-bottom: 8px;
}

.page-promotions__specific-promos .page-promotions__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-promotions__promo-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-card-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__promo-card-title a:hover {
  color: #FFCC00;
}

.page-promotions__promo-card-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.page-promotions__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  color: #666;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__terms-conditions ul,
.page-promotions__tips .page-promotions__tips-list {
  list-style: disc outside;
  margin: 0 auto;
  max-width: 900px;
  padding-left: 40px;
  color: #555;
}

.page-promotions__terms-conditions ul li,
.page-promotions__tips .page-promotions__tips-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-promotions__terms-conditions ul li strong,
.page-promotions__tips .page-promotions__tips-list li strong {
  color: #003366;
}

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

.page-promotions__conclusion .page-promotions__btn {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offer-types .page-promotions__type-card {
    flex-direction: column;
  }
  .page-promotions__type-card--reverse {
    flex-direction: column;
  }
  .page-promotions__type-card-image,
  .page-promotions__type-card-content {
    width: 100%;
  }
  .page-promotions__type-card-image {
    height: 250px;
  }
  .page-promotions__type-card-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__features-grid,
  .page-promotions__promo-list,
  .page-promotions__steps {
    grid-template-columns: 1fr;
  }
  .page-promotions__type-card-content {
    padding: 20px;
  }
  .page-promotions__type-card-title {
    font-size: 1.6em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}