/* Shared body padding-top handled by shared.css */

.page-promotions {
  color: #404040;
  background: #F3F3F3;
  font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #ffffff;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions__btn-primary {
  background-color: #1266EC;
  color: #ffffff;
  border: 2px solid #1266EC;
}

.page-promotions__btn-primary:hover {
  background-color: #0d4caf;
  border-color: #0d4caf;
}

.page-promotions__btn-secondary {
  background-color: #E5EEFD;
  color: #1266EC;
  border: 2px solid #E5EEFD;
}

.page-promotions__btn-secondary:hover {
  background-color: #cdd9ed;
  border-color: #cdd9ed;
}

.page-promotions__promotions-grid-section,
.page-promotions__cta-section,
.page-promotions__faq-section,
.page-promotions__info-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 2.2em;
  color: #404040;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-promotions__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: none;
}

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

.page-promotions__card-title {
  font-size: 1.4em;
  color: #404040;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promotions__card-button {
  display: inline-block;
  background-color: #025BE8;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background-color: #0045b3;
}

.page-promotions__cta-section {
  background-color: #025BE8;
  color: #ffffff;
  text-align: center;
  border-radius: 12px;
  padding: 60px 30px;
  margin-bottom: 40px;
}

.page-promotions__cta-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #404040;
  cursor: pointer;
  list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  color: #025BE8;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  color: #666666;
  line-height: 1.6;
  font-size: 0.95em;
}

.page-promotions__info-section {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
}

.page-promotions__info-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #404040;
}

.page-promotions__load-more-container {
  text-align: center;
  margin-top: 20px;
}

.page-promotions__load-more-button {
  background-color: #025BE8;
  color: #ffffff;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__load-more-button:hover {
  background-color: #0045b3;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    max-width: 700px;
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: 2.2em;
  }

  .page-promotions__hero-description {
    font-size: 1.1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px;
  }

  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__hero-content {
    width: 95%;
    padding: 15px;
  }

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

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__promotions-grid-section,
  .page-promotions__cta-section,
  .page-promotions__faq-section,
  .page-promotions__info-section {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__cta-section {
    padding: 40px 20px;
  }

  .page-promotions__cta-title {
    font-size: 2em;
  }

  .page-promotions__cta-description {
    font-size: 1em;
  }

  .page-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  .page-promotions__info-section {
    padding: 25px;
  }

  .page-promotions__info-content p {
    font-size: 0.95em;
  }

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

  .page-promotions__card,
  .page-promotions__section,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}