.page-promotions {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-promotions__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 40px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

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

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

.page-promotions__hero-title {
    font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #26A9E0; /* Brand color for title */
}

.page-promotions__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-promotions__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

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

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

.page-promotions__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

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

.page-promotions__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0;
    font-weight: 700;
}

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

.page-promotions__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions p {
    margin-bottom: 1em;
    color: #f0f0f0;
}

.page-promotions a {
    color: #26A9E0;
    text-decoration: none;
}

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

.page-promotions__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions__feature-list li {
    background-color: rgba(38, 169, 224, 0.1);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #26A9E0;
    border-radius: 5px;
    color: #f0f0f0;
}

.page-promotions__dark-section {
    background-color: #1a1a1a; /* Slightly lighter dark for contrast */
}

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

.page-promotions__type-card {
    background-color: rgba(38, 169, 224, 0.15);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__type-card p {
    color: #f0f0f0;
    flex-grow: 1;
}

.page-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 20px;
    align-self: flex-start;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions__steps-list li {
    counter-increment: step-counter;
    background-color: rgba(38, 169, 224, 0.1);
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
    border-radius: 8px;
    position: relative;
    color: #f0f0f0;
}

.page-promotions__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #26A9E0;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1em;
}

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

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

.page-promotions__promotion-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-promotions__promotion-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

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

.page-promotions__promotion-description {
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ styles */
.page-promotions__faq-item {
    background-color: rgba(38, 169, 224, 0.15);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(38, 169, 224, 0.25);
    user-select: none;
    list-style: none; /* For <summary> */
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    color: #f0f0f0;
    font-size: 1em;
    line-height: 1.5;
}

.page-promotions__faq-answer p {
    margin: 0;
}

.page-promotions__cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-promotions__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }
    .page-promotions__hero-title {
        font-size: 2em !important;
        margin-bottom: 10px;
    }
    .page-promotions__hero-description {
        font-size: 1em !important;
        margin-bottom: 20px;
    }
    .page-promotions__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-promotions__btn {
        width: 100% !important; /* Buttons full width */
        max-width: 100% !important;
        padding: 12px 15px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* General Section Padding & Titles */
    .page-promotions__section-padding {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em !important;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    .page-promotions__content-wrapper {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions p,
    .page-promotions li {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Generic Images */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-promotions__promotion-image {
        height: 200px !important; /* Adjust card image height for mobile */
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Product Display Area (Promotions Grid) */
    .page-promotions__promotions-grid {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        gap: 20px;
    }
    .page-promotions__promotion-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Other Content Modules (e.g., Type Cards, Steps, FAQ) */
    .page-promotions__grid-layout {
        grid-template-columns: 1fr !important; /* Single column for type cards */
    }
    .page-promotions__type-card {
        padding: 20px;
    }
    .page-promotions__steps-list li {
        padding: 15px 15px 15px 50px;
        font-size: 0.95em;
    }
    .page-promotions__steps-list li::before {
        left: 15px;
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }
    .page-promotions__cta-final-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}