:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

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

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

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

.page-promotions__section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-promotions__section-title--light {
    color: var(--color-text-main);
}

.page-promotions__description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__text-center {
    text-align: center;
}

.page-promotions__max-width-text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-promotions__btn-primary {
    background: var(--color-button-gradient-start);
    background-image: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    border: none;
}

.page-promotions__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 2px solid var(--color-border);
}

.page-promotions__btn-secondary:hover {
    background-color: var(--color-border);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-promotions__btn-primary--small,
.page-promotions__btn-secondary--small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions__cta-buttons--center {
    justify-content: center;
}

.page-promotions__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    position: relative;
    order: 1;
    max-height: 70vh;
    overflow: hidden;
}

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

.page-promotions__hero-content {
    order: 2;
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(8, 22, 15, 0.8);
    border-radius: 10px;
    transform: translateY(-50px);
    margin-bottom: -50px;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-promotions__hero-content .page-promotions__description {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.page-promotions__why-choose-section {
    background-color: var(--color-background);
}

.page-promotions__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-promotions__text-block {
    flex: 1;
}

.page-promotions__text-block p {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.page-promotions__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__image-block--center {
    margin-top: 40px;
}

.page-promotions__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__dark-section {
    background-color: var(--color-deep-green);
    color: var(--color-text-main);
}

.page-promotions__dark-section .page-promotions__description {
    color: var(--color-text-secondary);
}

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

.page-promotions__promo-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--color-border);
}

.page-promotions__promo-card--full-width {
    grid-column: 1 / -1;
}

.page-promotions__card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.page-promotions__card-text {
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-promotions__step-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--color-border);
}

.page-promotions__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(17, 168, 78, 0.5);
}

.page-promotions__step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.page-promotions__step-text {
    color: var(--color-text-secondary);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__terms-item {
    background-color: var(--color-card-bg);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    color: var(--color-text-secondary);
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-item strong {
    color: var(--color-text-main);
}

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

.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: var(--color-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-card-bg);
    transition: background-color 0.3s ease;
    list-style: none;
}

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

.page-promotions__faq-question:hover {
    background-color: rgba(17, 168, 78, 0.1);
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-gold);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-promotions__conclusion-section {
    background-color: var(--color-deep-green);
}

@media (max-width: 992px) {
    .page-promotions__content-grid {
        flex-direction: column;
    }
    .page-promotions__content-grid--reverse-mobile {
        flex-direction: column-reverse;
    }
    .page-promotions__hero-content {
        transform: translateY(-30px);
        margin-bottom: -30px;
    }
}

@media (max-width: 768px) {
    .page-promotions__section-padding {
        padding: 60px 0;
    }

    .page-promotions__hero-section {
        min-height: 500px;
    }

    .page-promotions__hero-content {
        padding: 30px 15px;
    }

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

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

    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 30px;
    }

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

    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    
    .page-promotions img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-image-wrapper,
    .page-promotions__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-promotions__hero-content {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-section {
        min-height: 400px;
    }
    .page-promotions__hero-content {
        transform: translateY(-20px);
        margin-bottom: -20px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    .page-promotions__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-promotions__faq-toggle {
        font-size: 1.5rem;
    }
}