 body { background-color: #f8fafc; }
    .training-wrapper { margin-top: 120px; margin-bottom: 100px; }

    /* Hero Section */
    .training-hero {
        background: white;
        border-radius: 30px;
        padding: 50px;
        border: 1px solid #edf2f7;
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    /* Training Card */
    .training-card {
        background: white;
        border-radius: 25px;
        border: 1px solid #f1f5f9;
        transition: 0.3s;
        overflow: hidden;
        height: 100%;
    }
    .training-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    
    .training-img-wrapper {
        position: relative;
        height: 220px;
    }
    .training-img { width: 100%; height: 100%; object-fit: cover; }
    
    .price-badge {
        position: absolute;
        bottom: 15px; right: 15px;
        background: white;
        color: #4361ee;
        padding: 8px 15px;
        border-radius: 12px;
        font-weight: 800;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .training-body { padding: 25px; }
    .mentor-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    .mentor-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
    
    .training-title { font-weight: 800; font-size: 1.1rem; color: #1e293b; line-height: 1.5; height: 3.3rem; overflow: hidden; margin-bottom: 15px; }

    .tag-item {
        font-size: 11px;
        padding: 5px 12px;
        border-radius: 50px;
        background: #f1f5f9;
        color: #64748b;
        font-weight: 700;
    }

    .btn-register-training {
        background: #4361ee;
        display: block;
        text-align: center;
        text-decoration: none;
        color: white;
        width: 100%;
        border: none;
        padding: 12px;
        border-radius: 12px;
        font-weight: 700;
        transition: 0.3s;
    }
    .btn-register-training:hover {
        background: #3046bd;
        box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
    }

    .slot-status { font-size: 0.8rem; font-weight: 700; color: #ef4444; }