.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Deep Navy background, so light text */
  background-color: var(--deep-navy);
}

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

.page-promotions__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* Default height for desktop */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #3a82ff 0%, #1752c0 100%);
}

.page-promotions__btn-secondary {
  background: none;
  color: var(--text-main);
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.page-promotions__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions__promotion-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider);
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: var(--text-main);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #3a82ff 0%, #1752c0 100%);
  transform: translateY(-2px);
}

.page-promotions__note-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--text-secondary);
}

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

.page-promotions__step-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--divider);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.page-promotions__terms-section h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 30px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-section p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-promotions__article-body {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--divider);
}

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

.page-promotions__feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider);
}

.page-promotions__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.page-promotions__feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 20px 20px;
  flex-grow: 1;
}

/* FAQ Section Styles */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--divider);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: rgba(var(--card-bg-rgb), 0.8);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.page-promotions__faq-answer p {
    margin-top: 10px;
}

.page-promotions__call-to-action-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--main-color), var(--auxiliary-color));
  margin-top: 40px;
}

.page-promotions__call-to-action-section .page-promotions__section-title {
  color: var(--text-main);
  margin-bottom: 25px;
}

.page-promotions__call-to-action-section .page-promotions__subtitle {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* General image responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */

/* Tablet and smaller desktops */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    height: 400px;
  }
  .page-promotions__main-title {
    font-size: 2.8rem;
  }
  .page-promotions__subtitle {
    font-size: 1.1rem;
  }
  .page-promotions__section-title {
    font-size: 2.4rem;
  }
  .page-promotions__article-body {
    padding: 30px;
  }
  .page-promotions__terms-section h3 {
    font-size: 1.4rem;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 1.05rem;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
    margin-bottom: 20px;
  }
  .page-promotions__hero-image-wrapper {
    height: 300px;
  }
  .page-promotions__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
  }
  .page-promotions__hero-content {
    position: static;
    transform: none;
    padding: 20px;
    text-align: center;
    margin-top: -30px; /* Pull content up slightly over image */
    background: linear-gradient(to bottom, rgba(var(--deep-navy-rgb), 0.8), var(--deep-navy));
    padding-bottom: 40px;
  }
  .page-promotions__main-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .page-promotions__subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__section {
    padding: 40px 0;
    margin-bottom: 10px;
  }
  .page-promotions__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .page-promotions__promotion-grid,
  .page-promotions__steps-grid,
  .page-promotions__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promotion-card,
  .page-promotions__step-card,
  .page-promotions__feature-card {
    margin: 0 auto;
    max-width: 400px; /* Constrain card width on very small screens */
  }
  .page-promotions__card-image,
  .page-promotions__feature-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-text {
    font-size: 0.9rem;
  }
  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .page-promotions__step-title {
    font-size: 1.2rem;
  }
  .page-promotions__step-description {
    font-size: 0.9rem;
  }
  .page-promotions__article-body {
    padding: 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__terms-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
  }
  .page-promotions__terms-section p {
    font-size: 0.9rem;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 1rem;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 24px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.9rem;
  }
  .page-promotions__call-to-action-section {
    padding: 60px 0;
  }
  .page-promotions__call-to-action-section .page-promotions__subtitle {
    margin-bottom: 30px;
  }
  /* Universal image max-width for mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__promotion-card,
  .page-promotions__step-card,
  .page-promotions__feature-card,
  .page-promotions__container,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}