.training-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.top-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-blue {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    border: none;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.section-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.section-block.reverse {
    flex-direction: row-reverse;
}

.section-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.section-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.section-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e2e8f0;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #e2e8f0;
    position: relative;
    padding-left: 24px;
}

.bullet-list li::before {
    content: "❖";
    position: absolute;
    left: 0;
    top: 2px;
    color: #cbd5e1;
}

.footer-blocks {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block h3 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.bottom-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.bottom-slogan {
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #e2e8f0;
    text-align: right;
    flex: 1;
}

@media (max-width: 768px) {
    .training-page {
        padding: 30px 16px;
    }

    .top-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn-blue {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .section-block,
    .section-block.reverse {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .section-img {
        flex: 1;
        max-width: 100%;
        margin-bottom: 0;
    }

    .section-text h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .section-text p,
    .bullet-list li {
        font-size: 15px;
    }

    .footer-blocks {
        margin-top: 40px;
        padding-top: 30px;
    }

    .footer-block h3 {
        font-size: 18px;
    }

    .bottom-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .bottom-slogan {
        font-size: 18px;
        text-align: left;
    }
}