.page-promotions-latest-offers {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #1a1a2e; /* Inherited from shared, but good to be explicit for context */
}

.page-promotions-latest-offers__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #017439; /* Brand primary color for hero background */
    overflow: hidden;
}

.page-promotions-latest-offers__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    color: #ffffff;
}

.page-promotions-latest-offers__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

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

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

.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary,
.page-promotions-latest-offers__card-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-promotions-latest-offers__btn-primary {
    background-color: #C30808; /* Custom color for Register/Login */
    color: #FFFF00; /* Custom font color for Register/Login */
    border: 2px solid #C30808;
}

.page-promotions-latest-offers__btn-primary:hover {
    background-color: #E01A1A;
    border-color: #E01A1A;
    color: #FFFF00;
}

.page-promotions-latest-offers__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Custom font color for Register/Login */
    border: 2px solid #FFFF00;
}

.page-promotions-latest-offers__btn-secondary:hover {
    background-color: #FFFF00;
    color: #C30808;
}

.page-promotions-latest-offers__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.page-promotions-latest-offers__section {
    padding: 60px 20px;
    text-align: center;
}

.page-promotions-latest-offers__section--intro {
    background-color: #1a1a2e;
    color: #ffffff;
}

.page-promotions-latest-offers__section--featured {
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-promotions-latest-offers__section--benefits,
.page-promotions-latest-offers__dark-section {
    background-color: #017439;
    color: #ffffff;
}

.page-promotions-latest-offers__section--guide {
    background-color: #1a1a2e;
    color: #ffffff;
}

.page-promotions-latest-offers__section--terms {
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-promotions-latest-offers__section--faq {
    background-color: #1a1a2e;
    color: #ffffff;
}

.page-promotions-latest-offers__section--cta {
    background-color: #017439;
    color: #ffffff;
}

.page-promotions-latest-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-latest-offers__heading {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
}

.page-promotions-latest-offers__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-align: left;
}

.page-promotions-latest-offers__paragraph a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-promotions-latest-offers__paragraph a:hover {
    color: #E01A1A;
}

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

.page-promotions-latest-offers__card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.page-promotions-latest-offers__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px;
}

.page-promotions-latest-offers__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFFF00;
}

.page-promotions-latest-offers__card-description {
    font-size: 1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    flex-grow: 1;
    text-align: left;
}
.page-promotions-latest-offers__card-description a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-promotions-latest-offers__card-description a:hover {
    color: #E01A1A;
}

.page-promotions-latest-offers__card-button {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
    padding: 10px 20px;
    margin-top: auto;
}

.page-promotions-latest-offers__card-button:hover {
    background-color: #02944d;
    border-color: #02944d;
    color: #ffffff;
}

.page-promotions-latest-offers__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-latest-offers__list-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #f0f0f0;
}

.page-promotions-latest-offers__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFFF00;
}

.page-promotions-latest-offers__list-item a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-promotions-latest-offers__list-item a:hover {
    color: #E01A1A;
}

.page-promotions-latest-offers__guide-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-latest-offers__step-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 calc(33% - 60px);
    max-width: calc(33% - 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #ffffff;
}

.page-promotions-latest-offers__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFFF00;
    color: #017439;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions-latest-offers__step-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #FFFF00;
}

.page-promotions-latest-offers__step-description {
    font-size: 1em;
    color: #e0e0e0;
}
.page-promotions-latest-offers__step-description a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-promotions-latest-offers__step-description a:hover {
    color: #E01A1A;
}

.page-promotions-latest-offers__keyword {
    font-weight: bold;
    color: #FFFF00;
}

.page-promotions-latest-offers__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions-latest-offers__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.page-promotions-latest-offers__faq-item summary {
    list-style: none;
}
.page-promotions-latest-offers__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions-latest-offers__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #FFFF00;
}

.page-promotions-latest-offers__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-latest-offers__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: #FFFF00;
}

.page-promotions-latest-offers__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: #e0e0e0;
    text-align: left;
}
.page-promotions-latest-offers__faq-answer a {
    color: #FFFF00;
    text-decoration: underline;
}
.page-promotions-latest-offers__faq-answer a:hover {
    color: #E01A1A;
}

.page-promotions-latest-offers__cta-content {
    padding: 40px 15px;
}

.page-promotions-latest-offers__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-promotions-latest-offers__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-latest-offers__hero-description {
        font-size: 1.1em;
    }
    .page-promotions-latest-offers__heading {
        font-size: 2em;
    }
    .page-promotions-latest-offers__step-item {
        flex: 1 1 calc(50% - 40px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .page-promotions-latest-offers__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-promotions-latest-offers__hero-title {
        font-size: 2em;
    }
    .page-promotions-latest-offers__hero-description {
        font-size: 1em;
    }
    .page-promotions-latest-offers__hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-promotions-latest-offers__btn-primary,
    .page-promotions-latest-offers__btn-secondary,
    .page-promotions-latest-offers__card-button {
        width: 100% !important;
        max-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-latest-offers__heading {
        font-size: 1.8em;
    }
    .page-promotions-latest-offers__paragraph {
        font-size: 0.95em;
    }
    .page-promotions-latest-offers__promotions-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-latest-offers__card {
        padding: 20px;
    }
    .page-promotions-latest-offers__card-image {
        min-height: 200px !important;
    }
    .page-promotions-latest-offers__card-title {
        font-size: 1.3em;
    }
    .page-promotions-latest-offers__list-item {
        font-size: 1em;
    }
    .page-promotions-latest-offers__guide-steps {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-latest-offers__step-item {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px;
    }
    .page-promotions-latest-offers__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-promotions-latest-offers__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-promotions-latest-offers__cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    /* Mobile image and video responsiveness */
    .page-promotions-latest-offers img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-latest-offers video,
    .page-promotions-latest-offers__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions-latest-offers__section,
    .page-promotions-latest-offers__card,
    .page-promotions-latest-offers__container,
    .page-promotions-latest-offers__video-section,
    .page-promotions-latest-offers__video-container,
    .page-promotions-latest-offers__video-wrapper,
    .page-promotions-latest-offers__hero-buttons,
    .page-promotions-latest-offers__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}