:root {
    --page-promotions-primary-color: #2F6BFF;
    --page-promotions-secondary-color: #6FA3FF;
    --page-promotions-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --page-promotions-card-bg: #FFFFFF;
    --page-promotions-background: #F4F7FB;
    --page-promotions-text-main: #1F2D3D;
    --page-promotions-text-black: #000000;
    --page-promotions-border-color: #D6E2FF;
    --page-promotions-glow-color: #A5C4FF;
}

.page-promotions {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--page-promotions-background);
    color: var(--page-promotions-text-main);
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    background-color: var(--page-promotions-primary-color);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

.page-promotions__hero-content-wrapper {
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
    color: #FFFFFF;
}

.page-promotions__hero-title {
    font-size: clamp(2em, 3.5vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-promotions__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-cta-button {
    display: inline-block;
    background: var(--page-promotions-button-gradient);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.page-promotions__overview-section {
    padding: 60px 0;
    background-color: var(--page-promotions-card-bg);
}

.page-promotions__overview-title,
.page-promotions__cards-section .page-promotions__overview-title,
.page-promotions__faq-title {
    font-size: clamp(1.8em, 2.5vw, 2.5em);
    color: var(--page-promotions-text-main);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__overview-text {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--page-promotions-text-main);
}

.page-promotions__overview-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-promotions__overview-list-item {
    background-color: #E8F0FE;
    color: var(--page-promotions-primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
    border: 1px solid var(--page-promotions-border-color);
}

/* Cards Section */
.page-promotions__cards-section {
    padding: 60px 0;
    background-color: var(--page-promotions-background);
}

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

.page-promotions__card {
    background-color: var(--page-promotions-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    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 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--page-promotions-border-color);
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions__card-title {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--page-promotions-text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background: var(--page-promotions-button-gradient);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: var(--page-promotions-card-bg);
}

.page-promotions__faq-item {
    background-color: #F8FAFF;
    border: 1px solid var(--page-promotions-border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-promotions__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-promotions-primary-color);
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: var(--page-promotions-text-main);
}

.page-promotions__faq-all-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background: var(--page-promotions-button-gradient);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

    .page-promotions__hero-content-wrapper {
        margin-top: 10px;
        padding: 15px;
    }

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

    .page-promotions__hero-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

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

    .page-promotions__overview-section,
    .page-promotions__cards-section,
    .page-promotions__faq-section {
        padding: 40px 0;
    }

    .page-promotions__overview-title,
    .page-promotions__faq-title {
        font-size: 2em;
    }

    .page-promotions__overview-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-promotions__overview-list-item {
        font-size: 0.9em;
        padding: 8px 15px;
    }

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

    .page-promotions__card-image {
        height: 200px;
    }

    .page-promotions__card-title {
        font-size: 1.2em;
    }

    .page-promotions__card-description {
        font-size: 0.9em;
    }

    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-promotions__faq-answer {
        font-size: 0.95em;
    }

    .page-promotions__faq-all-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    /* Ensure images in content sections don't overflow */
    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}