.page-promotions {
    background-color: #100224; /* Dark background matching brand style */
    color: #FFFFFF;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px; /* Small padding at bottom to avoid overlap with footer */
}

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

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 675px; /* Limit hero image height */
}

.page-promotions__hero-content {
    padding: 20px 15px;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFF00; /* Use yellow for prominent title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(1em, 2.5vw, 1.3em);
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.9;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login font color */
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 180px;
    text-align: center;
    min-height: 44px; /* Ensure touch target size */
}

.page-promotions__cta-button:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    color: #FFFF00; /* Use yellow for section titles */
    text-align: center;
    margin-bottom: 25px;
    padding: 0 15px;
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 15px;
    opacity: 0.85;
}

.page-promotions__overview-section,
.page-promotions__types-section,
.page-promotions__latest-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
    padding: 40px 20px;
    margin-bottom: 20px;
    background-color: #017439; /* Main brand color for sections */
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

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

.page-promotions__promotion-card {
    background-color: #100224; /* Darker background for cards */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card images */
    object-fit: cover;
    object-position: center;
    display: block;
    min-width: 200px; /* Ensure min image size */
    min-height: 200px;
}

.page-promotions__card-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin: 20px 15px 10px 15px;
    min-height: 50px;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #E0E0E0;
    margin: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login font color */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Ensure touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
}

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

.page-promotions__latest-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.page-promotions__latest-item {
    background-color: #100224;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-promotions__latest-item-title {
    font-size: 1.3em;
    color: #FFFF00;
    margin-bottom: 10px;
}

.page-promotions__latest-item-description {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.page-promotions__latest-item-date {
    font-size: 0.85em;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

.page-promotions__latest-item-button {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    min-height: 44px; /* Ensure touch target size */
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 150px;
}

.page-promotions__latest-item-button:hover {
    background-color: #a30606;
}

.page-promotions__terms-list {
    list-style: disc inside;
    max-width: 900px;
    margin: 30px auto;
    padding-left: 20px;
}

.page-promotions__terms-item {
    margin-bottom: 10px;
    font-size: 1em;
    color: #E0E0E0;
}

.page-promotions__terms-link,
.page-promotions__faq-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #FFFF00;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__terms-link:hover,
.page-promotions__faq-link:hover {
    color: #ffd700;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-promotions__faq-item {
    background-color: #100224;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item:hover {
    background-color: #0d011f;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    color: #FFFF00;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

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

.page-promotions__faq-item.is-active .page-promotions__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-promotions__faq-item.is-active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    opacity: 1;
    padding-top: 10px;
}

.page-promotions__cta-bottom-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.page-promotions__cta-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 450px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__cta-bottom-content {
    max-width: 800px;
    padding: 0 15px;
}

/* Responsive Adjustments */
@media (max-width: 849px) {
    .page-promotions__hero-image {
        min-width: 200px;
        min-height: 200px;
        max-height: 400px;
    }

    .page-promotions__card-image {
        min-width: 200px;
        min-height: 200px;
        height: 200px;
    }

    .page-promotions__cta-bottom-image {
        min-width: 200px;
        min-height: 200px;
        max-height: 300px;
    }

    .page-promotions__hero-content {
        padding: 15px 10px;
    }

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

    .page-promotions__hero-description {
        font-size: clamp(0.9em, 3vw, 1.1em);
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 280px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

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

    .page-promotions__overview-section,
    .page-promotions__types-section,
    .page-promotions__latest-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-bottom-section {
        padding: 30px 15px;
    }

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

    .page-promotions__latest-item-button {
        width: 100%;
        max-width: 100%;
    }

    /* Ensure all images inside .page-promotions are responsive */
    .page-promotions img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 549px) {
    .page-promotions__hero-image {
        min-width: 200px;
        min-height: 200px;
        max-height: 300px;
    }

    .page-promotions__card-image {
        min-width: 200px;
        min-height: 200px;
        height: 180px;
    }

    .page-promotions__cta-bottom-image {
        min-width: 200px;
        min-height: 200px;
        max-height: 250px;
    }

    .page-promotions__hero-section {
        padding-top: 5px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.5em, 8vw, 2.2em);
    }

    .page-promotions__hero-description {
        font-size: clamp(0.85em, 3.5vw, 1em);
    }

    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

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

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

    .page-promotions__terms-list {
        padding-left: 15px;
    }

    .page-promotions img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}