.page-promotions {
    font-family: Arial, sans-serif;
    color: #333333; /* Text Main */
    background-color: #F5F7FA; /* Background */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, relying on body for header offset */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #E53935; /* Main color as fallback */
    padding: 0;
    margin-bottom: 40px;
    display: flex; /* Ensure image then text */
    flex-direction: column; /* Ensure image then text */
    align-items: center;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Min image size */
}

.page-promotions__hero-content {
    text-align: center;
    padding: 40px 20px;
    color: #FFFFFF; /* White text on main color background */
    background-color: #E53935; /* Main color */
    width: 100%;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* H1 font size clamp */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFFFFF; /* White text for H1 on main color background */
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px; /* Ensure button is not too small */
}

.page-promotions__cta-button:hover {
    opacity: 0.9;
}

.page-promotions__cta-button--bottom {
    margin-top: 40px;
}

/* General Section Styling */
.page-promotions__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #E53935; /* Main color for section titles */
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #333333; /* Text Main */
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Background */
}

/* Promotion List Section */
.page-promotions__promo-list-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Background */
}

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

.page-promotions__promo-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Ensure card is not too small */
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

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

.page-promotions__promo-card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #E53935; /* Main color for card titles */
    line-height: 1.3;
}

.page-promotions__promo-card-text {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333333; /* Text Main */
    flex-grow: 1;
}

.page-promotions__promo-card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    min-width: 120px; /* Ensure button is not too small */
    min-height: 40px; /* Ensure button is not too small */
}

.page-promotions__promo-card-button:hover {
    opacity: 0.9;
}

.page-promotions__view-all-promos {
    text-align: center;
    margin-top: 20px;
}

.page-promotions__view-all-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF5A4F; /* Accent color for secondary button */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px; /* Ensure button is not too small */
}

.page-promotions__view-all-button:hover {
    background-color: #E53935; /* Main color on hover */
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Background */
}

.page-promotions__how-to-claim-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-promotions__how-to-claim-steps {
    flex: 1;
    min-width: 300px;
}

.page-promotions__step-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-promotions__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E53935; /* Main color */
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: 700;
    flex-shrink: 0;
}

.page-promotions__step-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #E53935; /* Main color */
    margin-top: 5px;
    margin-bottom: 5px;
}

.page-promotions__step-text {
    font-size: 0.95em;
    color: #333333; /* Text Main */
}

.page-promotions__how-to-claim-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-promotions__how-to-claim-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: #F5F7FA; /* Background */
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #E0E0E0; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    color: #333333; /* Text Main */
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 700;
    color: #E53935; /* Main color */
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #333333; /* Text Main */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }

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

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

    .page-promotions__how-to-claim-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__how-to-claim-image-wrapper {
        order: -1; /* Image above steps on smaller screens */
    }

    .page-promotions__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

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

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

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

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

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

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

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

    .page-promotions__promo-card-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }

    .page-promotions__how-to-claim-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }

    .page-promotions__how-to-claim-section .page-promotions__how-to-claim-image {
        width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }

    /* Enforce min-width for all content images in mobile */
    .page-promotions img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Global min-width for content images */
        min-height: 200px; /* Global min-height for content images */
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }

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

    .page-promotions__promo-card {
        min-height: 400px;
    }
    .page-promotions__promo-card-image {
        height: 180px;
    }
}