.page-promotions {
    background-color: var(--page-promotions-background, #F4F7FB);
    color: var(--page-promotions-text-main, #1F2D3D);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-height: 200px;
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-promotions__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--page-promotions-text-custom-1776249996415, #000000);
    margin-bottom: 15px;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.page-promotions__hero-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--page-promotions-text-main, #1F2D3D);
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px var(--page-promotions-glow, #A5C4FF);
}

.page-promotions__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--page-promotions-glow, #A5C4FF);
}

.page-promotions__intro-section,
.page-promotions__promotion-list,
.page-promotions__faq-section {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.page-promotions__section-title {
    font-size: 2em;
    font-weight: 700;
    color: var(--page-promotions-text-custom-1776249996415, #000000);
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.page-promotions__intro-text {
    font-size: 1.05em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-promotions-text-main, #1F2D3D);
}

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

.page-promotions__promotion-card {
    background-color: var(--page-promotions-card-bg, #FFFFFF);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-promotions-border, #D6E2FF);
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__card-image-wrapper {
    width: 100%;
    height: 225px;
    overflow: hidden;
}

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

.page-promotions__card-content {
    padding: 20px;
}

.page-promotions__card-title {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-promotions__card-title a.page-promotions__card-link {
    color: var(--page-promotions-text-custom-1776249996415, #000000);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a.page-promotions__card-link:hover {
    color: var(--page-promotions-primary, #2F6BFF);
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: var(--page-promotions-text-main, #1F2D3D);
    margin-bottom: 20px;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 8px var(--page-promotions-glow, #A5C4FF);
}

.page-promotions__card-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px var(--page-promotions-glow, #A5C4FF);
}

.page-promotions__faq-item {
    background-color: var(--page-promotions-card-bg, #FFFFFF);
    border: 1px solid var(--page-promotions-border, #D6E2FF);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--page-promotions-text-custom-1776249996415, #000000);
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: var(--page-promotions-text-main, #1F2D3D);
}

@media (max-width: 768px) {
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

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

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

    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
    }

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

@media (max-width: 480px) {
    .page-promotions__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }

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

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

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