/* style/resources-latest-promotions.css */
.page-resources-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-resources-latest-promotions__hero-section {
    background: linear-gradient(135deg, #004AAD 0%, #002D72 100%); /* Darker blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-latest-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-resources-latest-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-latest-promotions__btn {
    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;
    cursor: pointer;
    text-align: center;
}

.page-resources-latest-promotions__btn--primary {
    background-color: #FFD700;
    color: #004AAD;
    border: 2px solid #FFD700;
}

.page-resources-latest-promotions__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-latest-promotions__btn--secondary {
    background-color: #004AAD;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-top: 15px;
}

.page-resources-latest-promotions__btn--secondary:hover {
    background-color: #002D72;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-resources-latest-promotions__btn--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-resources-latest-promotions__btn--tertiary:hover {
    background-color: #FFD700;
    color: #004AAD;
    transform: translateY(-3px);
}

.page-resources-latest-promotions__section-title {
    font-size: 2.5em;
    color: #004AAD;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-resources-latest-promotions__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.page-resources-latest-promotions__promotions-overview,
.page-resources-latest-promotions__promotion-category,
.page-resources-latest-promotions__how-to-claim,
.page-resources-latest-promotions__terms-conditions,
.page-resources-latest-promotions__faq-section,
.page-resources-latest-promotions__cta-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-latest-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-resources-latest-promotions__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-promotions__promotion-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-resources-latest-promotions__promotion-item-title {
    font-size: 1.8em;
    color: #004AAD;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-latest-promotions__promotion-item-description {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
}

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

.page-resources-latest-promotions__feature-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #333;
}

.page-resources-latest-promotions__image-item {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-promotions__step-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-resources-latest-promotions__step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #333;
}

.page-resources-latest-promotions__step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #004AAD;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-promotions__step-list li a {
    color: #004AAD;
    font-weight: bold;
    text-decoration: none;
}

.page-resources-latest-promotions__step-list li a:hover {
    text-decoration: underline;
}

.page-resources-latest-promotions__terms-list {
    list-style: disc;
    padding-left: 30px;
    color: #444;
}

.page-resources-latest-promotions__terms-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-latest-promotions__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.page-resources-latest-promotions__faq-question {
    font-size: 1.4em;
    color: #004AAD;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-latest-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
}

.page-resources-latest-promotions__faq-question.active::after {
    content: '-';
}

.page-resources-latest-promotions__faq-answer {
    font-size: 1.05em;
    color: #555;
    margin-top: 15px;
    display: none;
    text-align: justify;
}

.page-resources-latest-promotions__faq-answer a {
    color: #004AAD;
    font-weight: bold;
    text-decoration: none;
}

.page-resources-latest-promotions__faq-answer a:hover {
    text-decoration: underline;
}

.page-resources-latest-promotions__cta-section {
    text-align: center;
    background-color: #004AAD;
    color: #fff;
    padding: 80px 0;
    border-radius: 10px;
}

.page-resources-latest-promotions__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-latest-promotions__cta-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-latest-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-resources-latest-promotions__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-latest-promotions__section-title {
        font-size: 2em;
    }

    .page-resources-latest-promotions__promotion-item-title {
        font-size: 1.5em;
    }

    .page-resources-latest-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-latest-promotions__btn--tertiary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }

    .page-resources-latest-promotions__step-list li {
        padding-left: 50px;
    }

    .page-resources-latest-promotions__step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .page-resources-latest-promotions__cta-title {
        font-size: 2.2em;
    }

    .page-resources-latest-promotions__cta-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-latest-promotions__hero-title {
        font-size: 2em;
    }

    .page-resources-latest-promotions__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-latest-promotions__btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }

    .page-resources-latest-promotions__btn--tertiary {
        margin-left: auto;
        margin-right: auto;
    }

    .page-resources-latest-promotions__section-title {
        font-size: 1.8em;
    }

    .page-resources-latest-promotions__promotion-item-title {
        font-size: 1.3em;
    }

    .page-resources-latest-promotions__cta-title {
        font-size: 1.8em;
    }

    .page-resources-latest-promotions__cta-subtitle {
        font-size: 0.9em;
    }
}