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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-cta-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

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

.page-promotions__intro,
.page-promotions__list,
.page-promotions__content-detail,
.page-promotions__cta-bottom {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A2463;
    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: #FFD700;
    border-radius: 2px;
}

.page-promotions__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-promotions__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-promotions__paragraph a {
    color: #0A2463;
    text-decoration: underline;
}

.page-promotions__paragraph a:hover {
    color: #FFD700;
}

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

.page-promotions__card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-promotions__card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #0A2463;
    padding: 20px 20px 10px;
    margin-bottom: 0;
}

.page-promotions__card-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #FFD700;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-promotions__card-actions {
    padding: 15px 20px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.page-promotions__btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-promotions__btn--details {
    background-color: #e0e0e0;
    color: #333;
}

.page-promotions__btn--details:hover {
    background-color: #d0d0d0;
    color: #0A2463;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-promotions__list-items,
.page-promotions__list-ordered {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

.page-promotions__list-ordered {
    list-style-type: decimal;
}

.page-promotions__list-items li,
.page-promotions__list-ordered li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions__list-items strong,
.page-promotions__list-ordered strong {
    color: #0A2463;
}

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

.page-promotions__cta-bottom {
    text-align: center;
    background-color: #0A2463;
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.page-promotions__cta-bottom .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__cta-bottom .page-promotions__section-title::after {
    background-color: #FFD700;
}

.page-promotions__cta-bottom .page-promotions__paragraph {
    color: #e0e0e0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-promotions__cta-bottom .page-promotions__cta-btn {
    background-color: #FFD700;
    color: #0A2463;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-bottom .page-promotions__cta-btn:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 15px;
    }

    .page-promotions__hero-title {
        font-size: 2.5em;
    }

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

    .page-promotions__hero-cta-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }

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

    .page-promotions__sub-title {
        font-size: 1.5em;
    }

    .page-promotions__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-promotions__btn {
        width: 100%;
        text-align: center;
    }

    .page-promotions__cta-bottom {
        padding: 40px 15px;
    }

    .page-promotions__cta-bottom .page-promotions__cta-btn {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

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

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

    .page-promotions__sub-title {
        font-size: 1.3em;
    }
}