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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

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

.page-promotions__hero-subtitle a {
    color: #ffc107; /* Auxiliary color for links */
    text-decoration: underline;
}

.page-promotions__hero-subtitle a:hover {
    color: #ffd700;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker primary for headings */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    font-weight: bold;
}

.page-promotions__sub-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__intro, .page-promotions__list, .page-promotions__deep-content, .page-promotions__cta {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__intro {
    padding-top: 0;
}

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

.page-promotions__text a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__text a:hover {
    text-decoration: underline;
}

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

.page-promotions__image--full-width {
    max-height: 400px;
    object-fit: cover;
}

.page-promotions__highlight {
    color: #ffc107;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #ffc107;
    color: #333; /* Dark text on light background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--primary:hover {
    background-color: #e0a800;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
    margin-left: 15px;
}

.page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
    min-width: 200px;
}

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

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

.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-bottom: 1px solid #eee;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #0056b3;
    padding: 20px 20px 10px;
    margin: 0;
    font-weight: bold;
}

.page-promotions__card-title a {
    color: #0056b3;
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

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

.page-promotions__card-actions {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; /* Push actions to the bottom */
}

.page-promotions__card-actions .page-promotions__btn {
    margin-left: 0;
    margin-right: 10px;
    padding: 10px 18px;
    font-size: 0.9em;
}

.page-promotions__card-actions .page-promotions__btn--primary {
    background-color: #ffc107;
    color: #333;
}

.page-promotions__card-actions .page-promotions__btn--primary:hover {
    background-color: #e0a800;
}

.page-promotions__card-actions .page-promotions__btn--secondary {
    background-color: #007bff;
    color: #ffffff;
    border: 1px solid #007bff;
}

.page-promotions__card-actions .page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-promotions__list-items {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1em;
}

.page-promotions__list-items li {
    margin-bottom: 10px;
}

.page-promotions__list-items strong {
    color: #0056b3;
}

.page-promotions__cta {
    text-align: center;
    background-color: #007bff;
    color: #ffffff;
    padding: 80px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__cta .page-promotions__section-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.page-promotions__cta .page-promotions__text {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-promotions__cta .page-promotions__text a {
    color: #ffc107;
    text-decoration: underline;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__sub-title {
        font-size: 1.6em;
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__intro, .page-promotions__list, .page-promotions__deep-content, .page-promotions__cta {
        padding: 40px 0;
    }
    .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions__card-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-promotions__card-actions .page-promotions__btn {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0;
    }
    .page-promotions__card-actions .page-promotions__btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__sub-title {
        font-size: 1.4em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__cta-buttons .page-promotions__btn {
        width: 100%;
    }
}

/* Keyword highlighting */
.page-promotions .keyword {
    color: #0056b3;
    font-weight: bold;
}

.page-promotions .highlight {
    color: #ffc107;
}