:root {
    --promotions-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --promotions-card-bg: #11271B;
    --promotions-background: #08160F;
    --promotions-text-main: #F2FFF6;
    --promotions-text-secondary: #A7D9B8;
    --promotions-border: #2E7A4E;
    --promotions-glow: #57E38D;
    --promotions-gold: #F2C14E;
    --promotions-deep-green: #0A4B2C;
}

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

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

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

.page-promotions__hero-section {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--promotions-text-main);
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-promotions__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    padding: 20px;
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__intro-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
    color: var(--promotions-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    white-space: nowrap;
}

.page-promotions__btn-primary {
    background: var(--promotions-button-gradient);
    color: var(--promotions-text-main);
    border: none;
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--promotions-glow);
}

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

.page-promotions__btn-secondary:hover {
    background: var(--promotions-gold);
    color: var(--promotions-background);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--promotions-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-promotions__section-description {
    font-size: 1.1rem;
    color: var(--promotions-text-secondary);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__sub-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--promotions-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px;
}

.page-promotions__text-block p {
    color: var(--promotions-text-main);
    text-align: left;
    margin-bottom: 15px;
}

.page-promotions__feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__feature-item {
    background: var(--promotions-card-bg);
    border: 1px solid var(--promotions-border);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--promotions-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-item strong {
    color: var(--promotions-gold);
    margin-right: 10px;
}

.page-promotions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-promotions__centered-image {
    max-width: 800px;
}

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

.page-promotions__promotion-card,
.page-promotions__step-card {
    background: var(--promotions-card-bg);
    border: 1px solid var(--promotions-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover,
.page-promotions__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--promotions-glow);
}

.page-promotions__card-title,
.page-promotions__step-title {
    font-size: 1.6rem;
    color: var(--promotions-gold);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-text,
.page-promotions__step-text {
    color: var(--promotions-text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__card-btn {
    margin-top: auto;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__card-image {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

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

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

.page-promotions__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--promotions-gold);
    cursor: pointer;
    background: var(--promotions-card-bg);
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    list-style: none;
}

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

.page-promotions__faq-item[open] summary {
    border-bottom-color: var(--promotions-border);
}

.page-promotions__faq-qtext {
    flex-grow: 1;
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--promotions-glow);
}

.page-promotions__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: var(--promotions-text-secondary);
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 1024px) {
    .page-promotions__hero-content {
        max-width: 80%;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-promotions__intro-text {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    .page-promotions__sub-title {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__hero-section {
        padding-top: 10px !important;
        min-height: 450px;
    }
    .page-promotions__hero-image {
        min-height: 300px;
    }
    .page-promotions__hero-content {
        width: 90%;
        padding: 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-promotions__intro-text {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 20px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .page-promotions__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 20px;
    }
    .page-promotions__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .page-promotions__sub-title {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        padding-left: 15px;
    }
    .page-promotions__text-block p {
        padding: 0 10px;
    }
    .page-promotions__feature-item {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .page-promotions__promotions-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__promotion-card,
    .page-promotions__step-card {
        padding: 20px;
    }
    .page-promotions__card-title,
    .page-promotions__step-title {
        font-size: 1.4rem;
    }
    .page-promotions__card-text,
    .page-promotions__step-text {
        font-size: 0.95rem;
    }
    .page-promotions__card-btn {
        max-width: 100%;
    }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__video-section {
        padding-top: 10px !important;
    }
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-promotions__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-promotions__faq-answer {
        padding: 10px 20px 15px;
    }
}