.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: none !important;
}

.page-promotions__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

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

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

/* General Layout */
.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0; /* Light text for dark background */
}

.page-promotions__text-content {
    font-size: 1em;
    color: #f0f0f0; /* Light text for dark background */
    margin-bottom: 20px;
}

.page-promotions__text-content a {
    color: #26A9E0;
    text-decoration: underline;
}

/* Color Schemes */
.page-promotions__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter than body background for contrast */
    color: #ffffff;
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__light-bg .page-promotions__section-title {
    color: #26A9E0;
}

.page-promotions__light-bg .page-promotions__section-description,
.page-promotions__light-bg .page-promotions__text-content {
    color: #555555;
}

.page-promotions__light-bg .page-promotions__text-content a {
    color: #26A9E0;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-promotions__btn-primary:hover {
    background-color: #1e87c0;
    transform: translateY(-2px);
}

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

.page-promotions__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-promotions__card-button {
    background-color: #EA7C07; /* Login/CTA color */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 15px;
    width: fit-content;
    display: block; /* Make it a block for full width in card */
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__card-button:hover {
    background-color: #d86c06;
    transform: translateY(-2px);
}

/* Promo Types Section */
.page-promotions__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions__promo-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none !important;
}

.page-promotions__card-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-promotions__card-text {
    font-size: 0.95em;
    color: #555555;
    flex-grow: 1;
}

.page-promotions__card-text a {
    color: #26A9E0;
    text-decoration: underline;
}

/* Guide Section */
.page-promotions__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promotions__step-item {
    background-color: #2a2a2a; /* Darker background for steps */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.page-promotions__step-text {
    color: #f0f0f0;
}

.page-promotions__step-text a {
    color: #26A9E0;
    text-decoration: underline;
}

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

/* Terms Section */
.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__terms-list li {
    background-color: #f8f8f8;
    border-left: 5px solid #26A9E0;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333333;
    font-size: 1em;
}

.page-promotions__terms-list li a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-promotions__list-title {
    color: #26A9E0;
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

/* App Download Section */
.page-promotions__app-download-section {
    padding: 80px 20px;
}

.page-promotions__app-download-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.page-promotions__app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-promotions__app-text .page-promotions__section-title {
    text-align: left;
    color: #FFFFFF;
}

.page-promotions__app-text .page-promotions__section-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: #f0f0f0;
}

.page-promotions__app-text .page-promotions__section-description a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-promotions__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.page-promotions__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: none !important;
}

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #f0f0f0;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #333333;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #e0e0e0;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    color: #26A9E0;
}

.page-promotions__faq-qtext a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    width: 20px;
    text-align: center;
    color: #26A9E0;
}

.page-promotions__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95em;
    color: #555555;
}

.page-promotions__faq-answer p {
    margin: 0;
    padding-top: 15px;
}

.page-promotions__faq-answer a {
    color: #26A9E0;
    text-decoration: underline;
}

/* Details element specific styling */
.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    content: "−";
}

.page-promotions__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

/* Final CTA Section */
.page-promotions__cta-final {
    text-align: center;
    padding: 60px 20px;
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #FFFFFF;
}

.page-promotions__cta-final .page-promotions__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-promotions__cta-final .page-promotions__section-description a {
    color: #26A9E0;
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__app-download-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__app-text .page-promotions__section-title,
    .page-promotions__app-text .page-promotions__section-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__hero-buttons,
    .page-promotions__final-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__card-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 0.9em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Images responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        filter: none !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__promo-grid,
    .page-promotions__steps-grid,
    .page-promotions__app-download-content,
    .page-promotions__faq-list,
    .page-promotions__final-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }
    /* Specific overrides for padding if needed for main sections */
    .page-promotions__intro-section .page-promotions__container,
    .page-promotions__types-section .page-promotions__container,
    .page-promotions__guide-section .page-promotions__container,
    .page-promotions__terms-section .page-promotions__container,
    .page-promotions__app-download-section .page-promotions__container,
    .page-promotions__faq-section .page-promotions__container,
    .page-promotions__cta-final .page-promotions__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
    }
    .page-promotions__promo-card {
        padding: 20px;
    }
    .page-promotions__step-item {
        padding: 25px;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__hero-section {
        min-height: 350px;
    }
}