.page-promotions {
    background-color: #0d0d0d;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
  }

  .page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding */
  }

  .page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
  }

  .page-promotions__hero-content {
    padding: 20px;
    text-align: center;
    max-width: 900px;
    margin-top: 20px;
  }

  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .page-promotions__description {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #e5e5e5;
  }

  .page-promotions__cta-button {
    display: inline-block;
    background-color: #800080;
    color: #f5f5f5;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .page-promotions__cta-button:hover {
    background-color: #FFD700;
    color: #0d0d0d;
    transform: translateY(-3px);
  }

  .page-promotions__promo-grid,
  .page-promotions__app-download-section,
  .page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
  }

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

  .page-promotions__promo-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px; /* Ensure images meet minimum size */
  }

  .page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  }

  .page-promotions__promo-image {
    width: 100%;
    height: 250px; /* Example fixed height for consistency */
    object-fit: cover;
    display: block;
  }

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

  .page-promotions__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
  }

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

  .page-promotions__card-button {
    display: inline-block;
    background-color: #800080;
    color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    transition: background-color 0.3s ease;
  }

  .page-promotions__card-button:hover {
    background-color: #FFD700;
    color: #0d0d0d;
  }

  .page-promotions__app-download-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .page-promotions__app-content {
    max-width: 500px;
    text-align: center;
    margin-bottom: 30px;
  }

  .page-promotions__app-content .page-promotions__section-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .page-promotions__app-content .page-promotions__description {
    margin-bottom: 30px;
  }

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

  .page-promotions__app-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0d0d0d;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 200px; /* Ensure buttons are large enough */
    text-align: center;
  }

  .page-promotions__app-button:hover {
    background-color: #800080;
    color: #f5f5f5;
    transform: translateY(-3px);
  }

  .page-promotions__app-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-left: 30px;
    min-width: 200px;
  }

  .page-promotions__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
  }

  .page-promotions__faq-answer {
    font-size: 1em;
    color: #ccc;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .page-promotions__hero-content {
      padding: 15px;
    }

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

    .page-promotions__description {
      font-size: 0.95em;
    }

    .page-promotions__cta-button {
      padding: 12px 25px;
      font-size: 1em;
    }

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

    .page-promotions__grid-container {
      grid-template-columns: 1fr;
    }

    .page-promotions__app-download-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }

    .page-promotions__app-image {
      margin-left: 0;
      margin-top: 30px;
      max-width: 300px;
    }

    .page-promotions__app-content {
      margin-bottom: 0;
    }

    .page-promotions__app-buttons {
      flex-direction: column;
      gap: 15px;
    }

    .page-promotions__app-button {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
    }

    /* Mobile content area image constraint */
    .page-promotions img {
      max-width: 100%;
      height: auto;
    }
  }

  @media (max-width: 480px) {
    .page-promotions__main-title {
      font-size: 1.8em;
    }

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

    .page-promotions__promo-image {
      height: 200px;
    }

    .page-promotions__card-title {
      font-size: 1.3em;
    }

    .page-promotions__faq-question {
      font-size: 1.1em;
    }
  }