.page-promotions {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif; /* Roboto-like sans-serif */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section */
}

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

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space between image and content */
}

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

.page-promotions__hero-content {
    max-width: 800px;
    margin-top: 40px; /* Space from image */
    padding: 0 20px;
}

.page-promotions__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
}

.page-promotions__hero-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure buttons are not too small */
    min-height: 50px; /* Ensure buttons are not too small */
    font-size: 1rem;
    text-align: center;
    line-height: 1; /* Adjust line height for button text */
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-promotions__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(87, 227, 141, 0.6); /* More glow on hover */
}

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-promotions__promo-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack image and content vertically */
    transition: transform 0.3s ease;
}

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

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

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

.page-promotions__card-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
    align-self: flex-start; /* Align button to start of card content */
    min-width: 150px; /* Ensure buttons are not too small */
    min-height: 40px; /* Ensure buttons are not too small */
    font-size: 0.9rem;
    text-align: center;
    line-height: 1;
}

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

/* How to Claim Section */
.page-promotions__how-to-claim {
    background-color: #0A4B2C; /* Deep Green for a distinct section */
    padding: 80px 0;
}

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

.page-promotions__step-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2AD16F; /* Button top color for emphasis */
    color: #08160F; /* Dark text for contrast */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-promotions__step-title {
    font-size: 1.5rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__step-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-promotions__action-area {
    margin-top: 60px;
}

.page-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding-bottom: 80px;
}

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

.page-promotions__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item:hover {
    background-color: #1E3A2A; /* Slightly darker on hover */
}

.page-promotions__faq-question {
    font-size: 1.25rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer; /* Indicate interactivity */
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    padding-top: 10px;
    border-top: 1px solid #1E3A2A; /* Divider */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-promotions__hero-content {
        margin-top: 20px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-promotions__hero-description,
    .page-promotions__section-description {
        font-size: 1rem;
    }

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

    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-image {
        height: 180px; /* Slightly smaller height on mobile */
        min-width: 200px; /* Ensure min width is respected */
        min-height: 200px; /* Ensure min height is respected */
    }

    .page-promotions__promo-card,
    .page-promotions__step-card,
    .page-promotions__faq-item {
        margin-left: 10px;
        margin-right: 10px;
    }

    /* Ensure all images in content area scale down and don't overflow */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__cta-button {
        width: 100%;
        padding: 12px 20px;
    }

    .page-promotions__cta-button--large {
        padding: 15px 30px;
    }

    .page-promotions__promo-image {
        height: 150px; /* Even smaller height on very small screens */
        min-width: 200px; /* Ensure min width is respected */
        min-height: 200px; /* Ensure min height is respected */
    }
}