.page-promotions {
    padding-top: 10px; /* Small padding to avoid content touching header, relying on body padding for main offset */
    background-color: #FFFFFF;
    color: #000000;
}

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

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #26A9E0; /* Using main brand color for hero background */
    padding: 40px 20px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensures image wrapper respects max width */
    margin-bottom: 20px;
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

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

.page-promotions__hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.page-promotions__btn--register {
    background-color: #EA7C07;
    color: #FFFFFF;
}

.page-promotions__btn--register:hover {
    background-color: #d46f07;
}

.page-promotions__btn--login {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 1px solid #26A9E0;
}

.page-promotions__btn--login:hover {
    background-color: #e0f2ff;
}

.page-promotions__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-promotions__overview-section, .page-promotions__current-promos-section, .page-promotions__how-to-claim-section, .page-promotions__faq-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-promotions__overview-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333333;
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions__feature-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__feature-icon {
    width: 100%; /* Ensures image fills card width */
    max-width: 400px; /* Constrain max size */
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__feature-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions__feature-description {
    color: #555555;
    line-height: 1.5;
}

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

.page-promotions__promo-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistent card appearance */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

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

.page-promotions__promo-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__promo-description {
    color: #555555;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__btn--claim {
    background-color: #EA7C07;
    color: #FFFFFF;
    text-align: center;
    width: fit-content; /* Adjust button width to content */
    margin-top: auto; /* Push button to the bottom */
}

.page-promotions__btn--claim:hover {
    background-color: #d46f07;
}

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

.page-promotions__step-item {
    text-align: center;
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-promotions__step-title {
    font-size: 1.3em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-promotions__step-description {
    color: #555555;
    line-height: 1.5;
}

.page-promotions__step-description a {
    color: #EA7C07;
    text-decoration: none;
    font-weight: 600;
}

.page-promotions__step-description a:hover {
    text-decoration: underline;
}

.page-promotions__cta-bottom {
    text-align: center;
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
    background-color: #EA7C07;
    color: #FFFFFF;
}

.page-promotions__btn--large:hover {
    background-color: #d46f07;
}

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

.page-promotions__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq-question {
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0f2ff; /* Lighter blue for question background */
    border-bottom: 1px solid #d0e7f7;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
    padding: 0 20px 20px 20px;
    color: #555555;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

.page-promotions__faq-contact {
    text-align: center;
    margin-top: 40px;
    font-size: 1.05em;
    color: #555555;
}

.page-promotions__faq-contact a {
    color: #EA7C07;
    text-decoration: none;
    font-weight: 600;
}

.page-promotions__faq-contact a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 30px 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.2em); /* Using clamp for H1 on mobile */
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions__btn {
        width: 100%;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-promotions__overview-section, .page-promotions__current-promos-section, .page-promotions__how-to-claim-section, .page-promotions__faq-section {
        padding: 40px 0;
    }
    .page-promotions__feature-item, .page-promotions__promo-card, .page-promotions__step-item {
        padding: 20px;
    }
    .page-promotions__feature-icon, .page-promotions__promo-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-promotions__promo-image {
        height: 200px; /* Adjust height for mobile cards */
    }
    .page-promotions__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions__faq-answer {
        padding: 15px;
    }

    /* Ensure all images within .page-promotions are responsive and don't overflow */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__hero-section {
        padding: 20px 10px;
    }
    .page-promotions__container {
        padding: 10px;
    }
}