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

.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main-color);
    background-color: var(--background-page-color);
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    background: var(--background-page-color);
    overflow: hidden;
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-promotions__main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__description {
    font-size: 18px;
    color: var(--text-main-color);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: var(--light-text-color);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
}

.page-promotions__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-promotions__btn-secondary {
    background: var(--card-bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.2);
}

.page-promotions__section {
    padding: 80px 20px;
    background: var(--background-page-color);
    overflow: hidden;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.page-promotions__section-description {
    font-size: 17px;
    color: var(--text-main-color);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promotion-card,
.page-promotions__feature-card,
.page-promotions__step-card {
    background: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.page-promotions__promotion-card:hover,
.page-promotions__feature-card:hover,
.page-promotions__step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.page-promotions__promotion-card img,
.page-promotions__feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-text {
    font-size: 16px;
    color: var(--text-main-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__promotions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.page-promotions__promotion-item {
    background: var(--card-bg-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__promotion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions__item-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main-color);
    margin-bottom: 10px;
}

.page-promotions__item-text {
    font-size: 16px;
    color: var(--text-main-color);
    margin-bottom: 20px;
}

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

.page-promotions__feature-card img {
    height: 220px;
}

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

.page-promotions__step-card {
    position: relative;
    padding-top: 60px;
}

.page-promotions__step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
    border: 3px solid var(--card-bg-color);
}

.page-promotions__step-card .page-promotions__card-title {
    margin-top: 20px;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
    font-size: 16px;
    color: var(--text-main-color);
}

.page-promotions__terms-list li {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__terms-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto;
}

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
    background: #f8faff;
}

.page-promotions__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 25px 20px;
    background: #f9fbfd;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 10px 10px;
    text-align: left;
    font-size: 16px;
    color: var(--text-main-color);
}

.page-promotions__faq-answer p {
    margin-top: 10px;
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 40px;
    }
    .page-promotions__section-title {
        font-size: 32px;
    }
    .page-promotions__hero-image img {
        border-radius: 8px;
    }
    .page-promotions__promotion-card img,
    .page-promotions__feature-card img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__section {
        padding: 40px 15px;
    }
    .page-promotions__container,
    .page-promotions__hero-container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-promotions__description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section-title {
        font-size: 28px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .page-promotions__section-title::after {
        width: 60px;
        height: 3px;
    }
    .page-promotions__section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .page-promotions__promotions-grid,
    .page-promotions__features-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-promotions__promotion-card,
    .page-promotions__feature-card,
    .page-promotions__step-card {
        padding: 25px;
        border-radius: 8px;
    }
    .page-promotions__promotion-card img,
    .page-promotions__feature-card img {
        
        border-radius: 6px;
        margin-bottom: 20px;
    }
    .page-promotions__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .page-promotions__card-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .page-promotions__promotion-item {
        padding: 20px 25px;
        border-radius: 8px;
    }
    .page-promotions__item-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .page-promotions__item-text {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .page-promotions__step-card {
        padding-top: 50px;
    }
    .page-promotions__step-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .page-promotions__terms-list {
        margin-top: 30px;
        font-size: 15px;
    }
    .page-promotions__terms-list li {
        padding: 12px 15px;
        margin-bottom: 10px;
        border-radius: 6px;
    }
    .page-promotions__terms-list li::before {
        font-size: 16px;
        margin-right: 8px;
    }

    .page-promotions__faq-list {
        margin-top: 30px;
    }
    details.page-promotions__faq-item {
        border-radius: 8px;
    }
    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px 20px;
    }
    .page-promotions__faq-qtext {
        font-size: 16px;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 25px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 20px 15px;
        font-size: 15px;
        border-radius: 0 0 8px 8px;
    }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-container,
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__cta-buttons {
        gap: 10px;
        flex-wrap: wrap !important;
    }
    .page-promotions__cta-buttons a {
        margin: 0;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
    }
}

.page-promotions img {
    filter: none !important;
}

.page-promotions p,
.page-promotions li,
.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4,
.page-promotions h5,
.page-promotions h6 {
    color: var(--text-main-color);
}

.page-promotions__btn-primary {
    color: var(--light-text-color);
}
.page-promotions__btn-secondary {
    color: var(--primary-color);
}
.page-promotions__btn-secondary:hover {
    color: var(--light-text-color);
}