.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFCC00;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

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

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

.page-promotions__highlight {
  color: #FFCC00;
}

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

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

.page-promotions__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

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

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

.page-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 10px;
}

.page-promotions__inline-link {
  color: #003366;
  text-decoration: underline;
}

.page-promotions__inline-link:hover {
  color: #FFCC00;
}

.page-promotions__intro {
  padding-bottom: 60px;
}

.page-promotions__features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promotions__feature-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions__feature-item h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-promotions__list {
  background-color: #f0f5f9;
  padding: 80px 0;
}

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

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

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-promotions__promo-content h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promotions__promo-content .page-promotions__btn {
  align-self: flex-start;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promotions__cta-text {
  margin-top: 60px;
  font-size: 1.2em;
  font-weight: bold;
  color: #003366;
}

.page-promotions__btn-group {
  text-align: center;
  margin-top: 30px;
}

.page-promotions__faq {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions__accordion {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-promotions__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__accordion-header {
  background-color: #003366;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__accordion-header:hover {
  background-color: #004080;
}

.page-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 25px;
}

.page-promotions__accordion-content p {
  color: #444;
  font-size: 1em;
}

.page-promotions__cta-bottom {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-bottom .page-promotions__section-title {
  color: #fff;
}

.page-promotions__cta-bottom .page-promotions__section-title::after {
  background-color: #FFCC00;
}

.page-promotions__cta-bottom .page-promotions__text-content {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__features {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__feature-item {
    max-width: 80%;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text-content {
    font-size: 0.95em;
  }
  .page-promotions__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions__feature-item h3 {
    font-size: 1.4em;
  }
  .page-promotions__promo-content h3 {
    font-size: 1.5em;
  }
  .page-promotions__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__accordion-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-promotions__btn--large {
    display: block;
    margin: 10px 0;
  }
  .page-promotions__features {
    gap: 20px;
  }
  .page-promotions__feature-item {
    min-width: unset;
    width: 100%;
  }
  .page-promotions__promo-card {
    margin-left: 0;
    margin-right: 0;
  }
  .page-promotions__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions__accordion-content {
    padding: 15px;
  }
}