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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #1A3C7A;
    border-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--link {
    background: none;
    border: none;
    color: #0A2463;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-promotions__btn--link:hover {
    color: #FFD700;
    text-decoration: none;
    transform: none;
    box-shadow: none;
}

.page-promotions__section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-promotions__section:nth-of-type(even) {
    background-color: #ffffff;
}

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

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

.page-promotions__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-promotions__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-promotions__list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #555;
}

.page-promotions__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
}

.page-promotions__steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

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

.page-promotions__steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0A2463;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1em;
}

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

.page-promotions__image--full-width {
    width: 100%;
}

.page-promotions__image--centered {
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__card {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    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.1);
}

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

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

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

.page-promotions__card-description {
    color: #666;
    margin-bottom: 20px;
}

.page-promotions__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-promotions__responsibility {
    font-size: 0.9em;
    color: #777;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }

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

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

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

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

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

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

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

    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

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

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

    .page-promotions__list li,
    .page-promotions__steps-list li {
        font-size: 1em;
    }
}