.page-promotions {
    font-family: Arial, sans-serif;
    color: #333333; /* Default text color for light background */
    background-color: #F3F3F3; /* Body background color */
    line-height: 1.6;
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top padding to avoid double spacing with body padding */
    background-color: #025BE8; /* Accent color for hero background */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px;
}

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

.page-promotions__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    z-index: 10;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
    border-radius: 12px;
}

.page-promotions__main-title {
    font-size: clamp(1.8rem, 5vw, 3rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.page-promotions__tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 25px;
    color: #f0f0f0;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__btn-primary {
    background-color: #FFFFFF;
    color: #025BE8;
    border: 2px solid #FFFFFF;
}

.page-promotions__btn-primary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-promotions__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #025BE8;
}

.page-promotions__section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #025BE8;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-promotions__section-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #404040;
}

.page-promotions__featured-promos-section {
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-promotions__featured-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Main card takes more space */
    gap: 25px;
}

.page-promotions__featured-main-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-promotions__article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.page-promotions__article-image--featured {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
}

.page-promotions__featured-main-card .page-promotions__card-title,
.page-promotions__featured-main-card .page-promotions__card-text,
.page-promotions__featured-main-card .page-promotions__card-link {
    padding: 0 20px;
}

.page-promotions__featured-main-card .page-promotions__card-title {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #025BE8;
}

.page-promotions__featured-main-card .page-promotions__card-title a {
    color: #025BE8;
    text-decoration: none;
}

.page-promotions__featured-main-card .page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__featured-main-card .page-promotions__card-text {
    font-size: 0.95rem;
    color: #404040;
    flex-grow: 1;
}

.page-promotions__featured-main-card .page-promotions__card-link {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #025BE8;
    text-decoration: none;
    font-weight: 600;
}

.page-promotions__featured-main-card .page-promotions__card-link:hover {
    text-decoration: underline;
}

.page-promotions__featured-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.page-promotions__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-promotions__card .page-promotions__article-image {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.page-promotions__card-title {
    font-size: 1.2rem;
    margin: 15px 20px 10px 20px;
    color: #025BE8;
}

.page-promotions__card-title a {
    color: #025BE8;
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__card-text {
    font-size: 0.9rem;
    color: #404040;
    padding: 0 20px;
    flex-grow: 1;
}

.page-promotions__card-link {
    display: inline-block;
    margin: 15px 20px 20px 20px;
    color: #025BE8;
    text-decoration: none;
    font-weight: 600;
}

.page-promotions__card-link:hover {
    text-decoration: underline;
}

.page-promotions__all-promos-section {
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

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

.page-promotions__promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}

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

.page-promotions__promo-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #025BE8;
}

.page-promotions__promo-title a {
    color: #025BE8;
    text-decoration: none;
}

.page-promotions__promo-title a:hover {
    text-decoration: underline;
}

.page-promotions__promo-text {
    font-size: 0.95rem;
    color: #404040;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-promotions__btn-small {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    background-color: #025BE8;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__btn-small:hover {
    background-color: #1266EC;
}

.page-promotions__how-to-claim-section {
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-promotions__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-title {
    font-size: 1.3rem;
    color: #025BE8;
    margin-bottom: 10px;
}

.page-promotions__step-text {
    font-size: 0.95rem;
    color: #404040;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__faq-section {
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-promotions__faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #025BE8;
    cursor: pointer;
    list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
    color: #404040;
}

.page-promotions__info-section {
    background-color: #025BE8;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}

.page-promotions__info-section .page-promotions__section-title {
    color: #ffffff;
}

.page-promotions__info-text {
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-promotions__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: #025BE8;
    border: 2px solid #FFFFFF;
}

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

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
    .page-promotions__hero-content {
        width: 95%;
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: 2rem;
    }

    .page-promotions__tagline {
        font-size: 1rem;
    }

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__btn-small,
    .page-promotions__btn-large,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-promotions__featured-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__featured-side {
        grid-template-columns: 1fr; /* Single column for side cards on mobile */
        gap: 20px;
    }

    .page-promotions__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .page-promotions__section-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .page-promotions__info-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .page-promotions__card-title,
    .page-promotions__promo-title,
    .page-promotions__step-title {
        font-size: 1.15rem;
    }

    .page-promotions__card-text,
    .page-promotions__promo-text,
    .page-promotions__step-text,
    .page-promotions__faq-question,
    .page-promotions__faq-answer {
        font-size: 0.9rem;
    }

    /* General image responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-promotions__hero-section,
    .page-promotions__featured-promos-section,
    .page-promotions__all-promos-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__faq-section,
    .page-promotions__info-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-promotions__hero-section {
        padding-top: 10px; /* Still apply small top padding */
    }
}