.page-promotions {
    background-color: #000000;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.page-promotions__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3.5em);
    font-weight: bold;
    line-height: 1.2;
    color: #FCBC45;
    margin-top: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.page-promotions__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #E5E5E5;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
}

.page-promotions__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-promotions__cta-button--login:hover {
    background-color: #e0a32c;
    transform: translateY(-2px);
}

.page-promotions__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-promotions__cta-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-promotions__promotion-list-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FCBC45;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #E5E5E5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__promotion-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions__card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
}

.page-promotions__card-content {
    padding: 25px;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #FCBC45;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
    background-color: #e0a32c;
}

.page-promotions__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-promotions__benefit-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__benefit-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions__benefit-title {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__benefit-description {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
}

.page-promotions__faq-item {
    background-color: #1a1a1a;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.25em;
    color: #FCBC45;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #E5E5E5;
    line-height: 1.6;
}

.page-promotions__cta-section {
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a, #333333);
    border-radius: 15px;
    padding: 50px 30px;
    margin-top: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 0.03em;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    color: #E5E5E5;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-promotions__cta-button--final {
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 8px;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__cta-button--final:hover {
    background-color: #e0a32c;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .page-promotions__hero-image-wrapper {
        max-height: 300px;
    }

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

    .page-promotions__intro-text {
        font-size: 1em;
    }

    .page-promotions__cta-button {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__section-description {
        font-size: 0.95em;
    }

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

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

    .page-promotions__card-description {
        font-size: 0.9em;
    }

    .page-promotions__card-button {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .page-promotions__benefit-item {
        padding: 20px;
    }

    .page-promotions__benefit-icon {
        width: 100px;
        height: 100px;
    }

    .page-promotions__benefit-title {
        font-size: 1.4em;
    }

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

    .page-promotions__faq-answer {
        font-size: 0.9em;
    }

    .page-promotions__cta-title {
        font-size: 2em;
    }

    .page-promotions__cta-description {
        font-size: 1em;
    }

    .page-promotions__cta-button--final {
        padding: 12px 25px;
        font-size: 1.1em;
    }

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

@media (max-width: 480px) {
    .page-promotions__hero-content {
        padding: 15px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.5em, 10vw, 2em);
    }

    .page-promotions__intro-text {
        font-size: 0.9em;
    }

    .page-promotions__cta-button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .page-promotions__promotion-list-section,
    .page-promotions__why-choose-section,
    .page-promotions__faq-section,
    .page-promotions__cta-section {
        padding: 30px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__cta-title {
        font-size: 1.8em;
    }

    .page-promotions__cta-button--final {
        width: calc(100% - 20px);
    }
}