/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8; /* Slightly off-white for sections */
}

/* Header offset for main content */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    background-color: #26A9E0; /* Primary brand color for hero */
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* For responsive image */
}

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

.page-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 1;
}

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

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    display: block;
    filter: none; /* Ensure no CSS filter is used */
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions__cta-buttons--center {
    margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    text-align: center;
}

.page-promotions__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-promotions__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-promotions__btn-secondary:hover {
    background-color: #ffffff;
    color: #26A9E0;
}

.page-promotions__btn-link {
    background-color: #26A9E0;
    color: #ffffff;
    border: 1px solid #26A9E0;
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-promotions__btn-link:hover {
    background-color: #1e87bb;
    border-color: #1e87bb;
}

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

.page-promotions__section:last-of-type {
    border-bottom: none;
}

.page-promotions__light-bg {
    background-color: #f8f8f8;
}

.page-promotions__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-promotions__dark-section .page-promotions__section-title {
    color: #ffffff;
}

.page-promotions__dark-section .page-promotions__text-block,
.page-promotions__dark-section .page-promotions__list-item {
    color: #f0f0f0;
}

.page-promotions__dark-section a {
    color: #ffffff;
    text-decoration: underline;
}

.page-promotions__dark-section a:hover {
    color: #d1eaff;
}

.page-promotions__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.page-promotions__text-block a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-promotions__card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Enforce min size for card images */
    filter: none; /* Ensure no CSS filter is used */
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-title a {
    color: #26A9E0;
    text-decoration: none;
}

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

.page-promotions__card-text {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-text a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__ordered-list,
.page-promotions__unordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-promotions__ordered-list {
    list-style-type: decimal;
}

.page-promotions__unordered-list {
    list-style-type: disc;
}

.page-promotions__list-item {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #444444;
}

.page-promotions__list-item strong {
    color: #26A9E0;
}

.page-promotions__list-item a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

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

/* FAQ Section */
.page-promotions__faq-list {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}