:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --dark-text-color: #333333;
    --light-text-color: #FFF3E6;
}

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

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

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

.page-promotions__section:nth-of-type(even) {
    background-color: rgba(23, 25, 31, 0.7);
}

.page-promotions__title {
    font-size: 38px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 8px rgba(255, 140, 26, 0.5);
    line-height: 1.2;
}

.page-promotions__description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main-color);
}

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

.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;
    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 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
}

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

.page-promotions__hero-content h1 {
    font-size: 48px;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 165, 58, 0.8);
    line-height: 1.1;
    font-weight: 900;
}

.page-promotions__hero-content p {
    font-size: 20px;
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-promotions__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

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

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

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 140, 26, 0.3);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__feature-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-item p {
    font-size: 16px;
    color: var(--text-main-color);
}

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

.page-promotions__card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.page-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    min-width: 200px;
    min-height: 200px;
}

.page-promotions__card-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    padding: 20px 20px 10px;
    margin: 0;
}

.page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--secondary-color);
}

.page-promotions__card-text {
    font-size: 16px;
    color: var(--text-main-color);
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 140, 26, 0.3);
}

.page-promotions__card-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.5);
}

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

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

.page-promotions__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 140, 26, 0.5);
}

.page-promotions__step-item h3 {
    font-size: 22px;
    color: var(--text-main-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-item h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__step-item h3 a:hover {
    color: var(--primary-color);
}

.page-promotions__step-item p {
    font-size: 16px;
    color: var(--text-main-color);
}

.page-promotions__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-promotions__tips-list li {
    background: var(--card-bg);
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--primary-color);
    font-size: 17px;
    color: var(--text-main-color);
    line-height: 1.8;
}

.page-promotions__tips-list li strong {
    color: var(--primary-color);
}

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

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
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;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}
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-color: rgba(255, 140, 26, 0.1);
}
.page-promotions__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main-color);
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover .page-promotions__faq-qtext {
    color: var(--primary-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;
    transition: transform 0.3s ease;
}
details.page-promotions__faq-item[open] .page-promotions__faq-toggle {
    transform: rotate(45deg);
}
details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 25px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 140, 26, 0.2);
    border-radius: 0 0 10px 10px;
    color: var(--text-main-color);
    font-size: 16px;
}
.page-promotions__faq-answer p {
    margin: 0;
    padding-top: 15px;
}

.page-promotions__cta-final-section {
    background: linear-gradient(135deg, var(--deep-orange) 0%, var(--primary-color) 100%);
    padding: 80px 20px;
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--glow-color);
}

.page-promotions__cta-final-section .page-promotions__title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.page-promotions__cta-final-section .page-promotions__description {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .page-promotions__hero-content h1 {
        font-size: 40px;
    }
    .page-promotions__hero-content p {
        font-size: 18px;
    }
    .page-promotions__title {
        font-size: 32px;
    }
    .page-promotions__description {
        font-size: 16px;
    }
    .page-promotions__card img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-content h1 {
        font-size: 32px;
    }
    .page-promotions__hero-content p {
        font-size: 16px;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 18px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__features-grid,
    .page-promotions__cards-grid,
    .page-promotions__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions__feature-item,
    .page-promotions__card,
    .page-promotions__step-item {
        padding: 20px;
    }

    .page-promotions__card img {
        
    }

    .page-promotions__card-title {
        font-size: 20px;
        padding: 15px 15px 5px;
    }

    .page-promotions__card-text {
        font-size: 15px;
        padding: 0 15px 15px;
    }

    .page-promotions__card-button {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
        font-size: 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-promotions__container {
        padding: 0 15px;
    }

    .page-promotions__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .page-promotions__description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .page-promotions__feature-item h3,
    .page-promotions__step-item h3 {
        font-size: 20px;
    }

    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px;
        font-size: 16px;
    }
    .page-promotions__faq-qtext {
        font-size: 16px;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 24px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 15px 15px;
        font-size: 15px;
    }

    .page-promotions__cta-final-section {
        padding: 50px 15px;
        margin: 40px auto;
    }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__cta-final-section,
    .page-promotions__feature-item,
    .page-promotions__step-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .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-direction: column;
        gap: 10px;
    }
}