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

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

.page-promotions__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 40px;
    background: linear-gradient(to bottom, var(--main-color, #2F6BFF), var(--accent-color, #6FA3FF));
    color: #FFFFFF;
}

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

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
    filter: none;
}

.page-promotions__hero-content {
    max-width: 800px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-promotions__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 48px;
}

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

.page-promotions__section {
    padding: 60px 0;
}

.page-promotions__section--featured {
    background-color: var(--card-bg, #FFFFFF);
}

.page-promotions__section--terms,
.page-promotions__section--faq {
    background-color: var(--background, #F4F7FB);
}

.page-promotions__section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main, #1F2D3D);
}

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

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

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

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

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

.page-promotions__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--custom-color-1776249996415, #000000);
}

.page-promotions__card-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main, #1F2D3D);
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-gradient, linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%));
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.95rem;
    align-self: flex-start;
    transition: background 0.3s ease;
    min-width: 120px;
    min-height: 40px;
}

.page-promotions__card-button:hover {
    opacity: 0.9;
}

.page-promotions__text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-main, #1F2D3D);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 900px;
}

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

.page-promotions__terms-link,
.page-promotions__faq-link {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: var(--main-color, #2F6BFF);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-promotions__terms-link:hover,
.page-promotions__faq-link:hover {
    color: var(--accent-color, #6FA3FF);
}

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

.page-promotions__faq-question {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--custom-color-1776249996415, #000000);
}

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

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-promotions__description {
        font-size: 1rem;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions__section {
        padding: 40px 0;
    }

    .page-promotions__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

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

    .page-promotions__card-title {
        font-size: 1.3rem;
    }

    .page-promotions__text {
        font-size: 1rem;
    }

    .page-promotions__terms-item,
    .page-promotions__faq-item {
        padding: 15px;
    }

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

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

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