.page-promotions {
    padding-bottom: 40px;
    color: #FFF6D6;
    background-color: #0A0A0A;
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 40px;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Maintain aspect ratio for common hero sizes */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

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

.page-promotions__hero-content {
    padding: 0 20px;
    max-width: 900px;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFD36B;
    letter-spacing: 0.05em;
}

.page-promotions__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-promotions__overview-section,
.page-promotions__how-to-claim-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD36B;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    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(280px, 1fr));
    gap: 30px;
}

.page-promotions__promo-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__promo-title {
    font-size: 1.4em;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    text-align: center;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #FFE082 0%, #E8B940 100%);
}

.page-promotions__claim-steps {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-promotions__step-item {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    flex: 1 1 calc(50% - 30px);
    max-width: 450px;
    border: 1px solid #3A2A12;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD36B;
    color: #0A0A0A;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 15px;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__step-text {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-promotions__claim-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions__secondary-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #FFD36B;
    color: #FFD36B;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__secondary-button:hover {
    background-color: #FFD36B;
    color: #0A0A0A;
}

.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-promotions__benefit-item {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #3A2A12;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-heading {
    font-size: 1.3em;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__benefit-text {
    font-size: 0.95em;
    line-height: 1.5;
    color: #FFF6D6;
}

.page-promotions__faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    text-align: left;
}

.page-promotions__faq-question {
    display: block;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #FFD36B;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #1a1a1a;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

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

@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(2em, 6vw, 3em);
    }

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

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

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

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

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

    .page-promotions__step-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-promotions__claim-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
    }

    .page-promotions__promo-card img, .page-promotions__how-to-claim-section img, .page-promotions__why-choose-section img, .page-promotions__faq-section img {
        max-width: 100%;
        height: auto;
    }
}

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

    .page-promotions__overview-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section {
        padding: 30px 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-promotions__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__faq-question::after {
        right: 20px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }
    .page-promotions__hero-image {
      max-width: 100%;
      height: auto;
    }
    .page-promotions__hero-image-wrapper {
      max-height: none;
    }
    .page-promotions__promo-image {
      min-width: 200px;
      max-width: 100%;
      height: auto;
    }
    .page-promotions__promo-card img {
      width: 100%;
      height: auto;
    }
    .page-promotions__step-item img {
      max-width: 100%;
      height: auto;
    }
    .page-promotions__benefit-item img {
      max-width: 100%;
      height: auto;
    }
    .page-promotions__faq-item img {
      max-width: 100%;
      height: auto;
    }
    .page-promotions__hero-section img,
    .page-promotions__overview-section img,
    .page-promotions__how-to-claim-section img,
    .page-promotions__why-choose-section img,
    .page-promotions__faq-section img {
      width: 100%;
      height: auto;
      min-width: 200px;
      min-height: 200px;
    }
}