.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding-top: var(--header-offset, 120px);
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom color for hero title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-promotions__btn-register,
.page-promotions__btn-login {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-register {
    background-color: #C30808; /* Custom color for Register */
    color: #FFFF00; /* Custom font color for Register */
    border: 2px solid #FFFF00;
}

.page-promotions__btn-register:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-promotions__btn-login {
    background-color: #C30808; /* Custom color for Login */
    color: #FFFF00; /* Custom font color for Login */
    border: 2px solid #FFFF00;
}

.page-promotions__btn-login:hover {
    background-color: #a30606;
    transform: translateY(-2px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-promotions__intro-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
    color: #333333;
}

.page-promotions__types-section,
.page-promotions__terms-section,
.page-promotions__cta-section {
    padding: 80px 0;
    background-color: #017439;
    color: #FFFFFF;
}

.page-promotions__types-section .page-promotions__section-title,
.page-promotions__terms-section .page-promotions__section-title,
.page-promotions__cta-section .page-promotions__section-title {
    color: #FFFFFF;
}

.page-promotions__types-section .page-promotions__section-title::after,
.page-promotions__terms-section .page-promotions__section-title::after,
.page-promotions__cta-section .page-promotions__section-title::after {
    background-color: #FFFFFF;
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-promotions__text-block--center {
    text-align: center;
}

.page-promotions__text-block a {
    color: #017439; /* Brand color for links on light background */
    text-decoration: underline;
}

.page-promotions__dark-bg .page-promotions__text-block a {
    color: #FFFF00; /* Yellow for links on dark background */
}

.page-promotions__highlight {
    font-weight: bold;
    color: #017439;
}

.page-promotions__dark-bg .page-promotions__highlight {
    color: #FFFF00;
}

.page-promotions__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__card {
    background-color: #FFFFFF;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #017439;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #FFFFFF;
    color: #017439;
    border: 2px solid #017439;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

.page-promotions__step-card {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.page-promotions__step-description {
    font-size: 1em;
    color: #555555;
}

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

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

.page-promotions__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #017439;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

.page-promotions__term-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions__term-title {
    font-size: 1.4em;
    color: #FFFF00; /* Custom color for term titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__term-description {
    font-size: 1em;
    line-height: 1.7;
}

.page-promotions__video-section {
    position: relative;
    padding: 80px 0;
    background-color: #222;
    text-align: center;
}

.page-promotions__video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.page-promotions__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.page-promotions__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.page-promotions__video-overlay:hover {
    opacity: 0.9;
}

.page-promotions__video-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFFF00;
}

.page-promotions__video-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 80%;
}

.page-promotions__btn-video-cta {
    background-color: #C30808; /* Custom color for CTA button on video */
    color: #FFFF00; /* Custom font color for CTA button on video */
    border: 2px solid #FFFF00;
}

.page-promotions__btn-video-cta:hover {
    background-color: #a30606;
}

.page-promotions__faq-list {
    margin-top: 40px;
}

.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);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-item.active {
    background-color: #E0FFE0; /* Light green for active FAQ */
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #017439;
    transition: color 0.3s ease;
}

.page-promotions__faq-question:hover {
    color: #005f2c;
}

.page-promotions__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

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

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 20px;
}

.page-promotions__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

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

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }

    .page-promotions__hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-promotions__hero-content {
        padding: 30px 15px;
    }

    .page-promotions__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-promotions__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-promotions__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-register,
    .page-promotions__btn-login {
        width: 100%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-promotions__intro-section,
    .page-promotions__types-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section {
        padding: 40px 0;
    }

    .page-promotions__container {
        padding: 0 15px;
    }

    .page-promotions__text-block {
        font-size: 1em;
    }

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

    .page-promotions__card {
        padding: 20px;
    }

    .page-promotions__card-title {
        font-size: 1.4em;
    }

    .page-promotions__step-card {
        padding: 25px;
    }

    .page-promotions__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-promotions__step-title {
        font-size: 1.2em;
    }

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

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-promotions__term-title {
        font-size: 1.2em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-promotions__faq-question h3 {
        font-size: 1.1em;
    }

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

    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 10px 15px;
    }

    /* Image responsiveness */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper,
    .page-promotions__hero-buttons,
    .page-promotions__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Video responsiveness */
    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-promotions__video-title {
        font-size: 1.8em;
    }

    .page-promotions__video-description {
        font-size: 1em;
    }
}