/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for general content on dark backgrounds */
  background-color: #0A2463; /* Main background color */
}

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

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

.page-promotions__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1c4d92 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  color: #E3B23C; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions__hero-subtitle {
  font-size: 1.2em;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #E3B23C; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.page-promotions__btn--primary {
  background-color: #E3B23C; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  border-color: #E3B23C;
}

.page-promotions__btn--primary:hover {
  background-color: #f0c567;
  border-color: #f0c567;
  transform: translateY(-3px);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #E3B23C; /* Gold text on dark blue background */
  border-color: #E3B23C;
}

.page-promotions__btn--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-promotions__btn--small {
  padding: 10px 25px;
  font-size: 0.95em;
  border-radius: 25px;
  background-color: #E3B23C;
  color: #0A2463;
}

.page-promotions__btn--small:hover {
  background-color: #f0c567;
  border-color: #f0c567;
  transform: translateY(-2px);
}

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

.page-promotions__promo-card {
  background-color: #1a3a70; /* Slightly lighter dark blue for cards */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #E3B23C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #c0c0c0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__card-features li {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
}

.page-promotions__icon-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #E3B23C;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.page-promotions__icon-check::before {
  content: '✓';
  color: #0A2463;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.page-promotions__detail-item {
  background-color: #1a3a70;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-promotions__detail-title {
  font-size: 1.8em;
  color: #E3B23C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__detail-title a {
  color: #E3B23C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
  color: #f0c567;
}

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

.page-promotions__section--cta {
  background-color: #0A2463;
  padding: 80px 0;
}

.page-promotions__section-title--cta {
  color: #E3B23C;
  font-size: 2.8em;
}

.page-promotions__section-description--cta {
  color: #FFFFFF;
  font-size: 1.15em;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-promotions__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__cta-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__section--responsible {
  background-color: #1a3a70;
  padding: 60px 0;
}

.page-promotions__responsible-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  opacity: 0.8;
}

.page-promotions__section--footer-cta {
  background-color: #0A2463;
  padding: 60px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__promo-card,
  .page-promotions__detail-item {
    padding: 25px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__detail-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__card-image {
    height: 150px;
  }
}